9 lines
229 B
Plaintext
9 lines
229 B
Plaintext
|
(ns $PROJECT_NAME_HYPHENATED$.db
|
||
|
(:require [schema.core :as s :include-macros true]))
|
||
|
|
||
|
;; schema of app-db
|
||
|
(def schema {:greeting s/Str})
|
||
|
|
||
|
;; initial state of app-db
|
||
|
(def app-db {:greeting "Hello Clojure in iOS and Android!"})
|