mirror of
https://github.com/penpot/penpot.git
synced 2025-07-29 15:57:22 +02:00
Import backend code inside the repository.
This commit is contained in:
parent
e21798f1ed
commit
de57630c14
113 changed files with 8040 additions and 0 deletions
12
backend/src/uxbox/util/cli.clj
Normal file
12
backend/src/uxbox/util/cli.clj
Normal 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)))
|
Loading…
Add table
Add a link
Reference in a new issue