mirror of
https://github.com/status-im/status-mobile.git
synced 2025-02-03 12:23:50 +00:00
9 lines
211 B
Plaintext
9 lines
211 B
Plaintext
|
(ns syng-im.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!"})
|