Replace builtin rstore impl with potok.

This commit is contained in:
Andrey Antukh 2016-11-27 21:53:12 +01:00
parent 6f8f115422
commit 40b48318ff
No known key found for this signature in database
GPG key ID: 4DFEBCB8316A8B95
92 changed files with 965 additions and 1063 deletions

View file

@ -3,17 +3,17 @@
;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
;;
;; Copyright (c) 2015-2016 Andrey Antukh <niwi@niwi.nz>
;; Copyright (c) 2015-2016 Juan de la Cruz <delacruzgarciajuan@gmail.com>
(ns uxbox.main
(:require [uxbox.util.rstore :as rs]
[uxbox.main.state :as st]
(:require [uxbox.store :as st]
[uxbox.main.locales :as lc]
[uxbox.main.ui :as ui]))
[uxbox.main.ui :as ui]
[uxbox.main.state :refer [initial-state]]
[uxbox.util.storage :refer [storage]]))
(defn ^:export init
[]
(lc/init)
(st/init)
(st/init initial-state)
(ui/init-routes)
(ui/init))