2016-03-01 20:18:42 +02:00
|
|
|
;; This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
;; License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
;;
|
|
|
|
;; Copyright (c) 2015-2016 Andrey Antukh <niwi@niwi.nz>
|
|
|
|
|
2016-06-12 10:27:05 +03:00
|
|
|
(ns uxbox.main
|
2016-11-27 21:53:12 +01:00
|
|
|
(:require [uxbox.store :as st]
|
2016-06-14 17:39:44 +03:00
|
|
|
[uxbox.main.locales :as lc]
|
2016-11-27 21:53:12 +01:00
|
|
|
[uxbox.main.ui :as ui]
|
2016-12-19 08:33:19 +01:00
|
|
|
[uxbox.main.state :refer [initial-state]]))
|
2015-06-18 19:35:50 +02:00
|
|
|
|
2016-06-14 17:39:44 +03:00
|
|
|
(defn ^:export init
|
2016-06-12 13:24:55 +03:00
|
|
|
[]
|
2016-06-14 17:39:44 +03:00
|
|
|
(lc/init)
|
2016-11-27 21:53:12 +01:00
|
|
|
(st/init initial-state)
|
2016-03-15 20:51:51 +02:00
|
|
|
(ui/init))
|