summaryrefslogtreecommitdiffstats
path: root/src/yasa/settings.clj
blob: d936515a9451e597fad3e92ca201f19e34c15f0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(ns yasa.settings)

(def settings
  {:username (or nil ;; ENTER YOUR USERNAME
                 (or (System/getenv "YASA-USERNAME")
                     (lazy-seq
                      (throw (Exception. "No username provided!")))))
   :password (or nil ;; ENTER YOUR PASSWORD
                 (or (System/getenv "YASA-PASSWORD")
                     (lazy-seq
                      (throw (Exception. "No password provided!")))))})