diff options
Diffstat (limited to 'main.lisp')
-rw-r--r-- | main.lisp | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -11,10 +11,7 @@ :arg-parser #'identity)) (defun main () - (let ((options (opts:get-opts)) - (category (car (mito:select-dao 'category)))) + (let ((options (opts:get-opts))) (when-option (options :import) (import-config (getf options :import))) - (run-ui category))) - -(main) + (run-ui (car (mito:select-dao 'category))))) |