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
|
2017-01-13 22:01:13 +01:00
|
|
|
(:require [uxbox.main.store :as st]
|
2016-06-14 17:39:44 +03:00
|
|
|
[uxbox.main.locales :as lc]
|
2017-01-13 22:01:13 +01:00
|
|
|
[uxbox.main.ui :as ui]))
|
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)
|
2017-01-13 22:01:13 +01:00
|
|
|
(st/init)
|
2016-12-19 09:10:36 +01:00
|
|
|
(ui/init-routes)
|
2016-03-15 20:51:51 +02:00
|
|
|
(ui/init))
|