mirror of
https://github.com/status-im/re-natal.git
synced 2025-01-15 07:04:23 +00:00
9 lines
229 B
Clojure
9 lines
229 B
Clojure
(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!"})
|