Import backend code inside the repository.

This commit is contained in:
Andrey Antukh 2016-11-20 20:04:52 +01:00
parent e21798f1ed
commit de57630c14
No known key found for this signature in database
GPG key ID: 4DFEBCB8316A8B95
113 changed files with 8040 additions and 0 deletions

View file

@ -0,0 +1,12 @@
(ns uxbox.util.cli
"Command line interface helpers.")
(defn exit!
([] (exit! 0))
([code]
(System/exit code)))
(defmacro print-err!
[& args]
`(binding [*out* *err*]
(println ~@args)))