diff options
author | Logan Hunt <loganjh@amazon.com> | 2022-05-24 16:22:00 -0700 |
---|---|---|
committer | Logan Hunt <loganjh@amazon.com> | 2022-05-24 16:22:00 -0700 |
commit | 47b6bdf8b737bf12f5f7b8839ed2389ff28c723c (patch) | |
tree | b5be62069a96b7461b8ec4bae588d375591616e3 /main.lisp | |
parent | 3db9a2eb7a7d14ce935f5902b0c21ce4fd5eb729 (diff) | |
download | lispruns-47b6bdf8b737bf12f5f7b8839ed2389ff28c723c.tar.gz lispruns-47b6bdf8b737bf12f5f7b8839ed2389ff28c723c.zip |
Write code into systems and add formatting for highlight lists
Diffstat (limited to 'main.lisp')
-rw-r--r-- | main.lisp | 20 |
1 files changed, 0 insertions, 20 deletions
@@ -1,22 +1,6 @@ -(ql:quickload '(unix-opts mito cl-ppcre croatoan local-time)) - ;; Migrate database structure (mito:connect-toplevel :sqlite3 :database-name #P"timer.db") (setq mito:*auto-migration-mode* t) -(load "database/category.lisp") -(load "database/run.lisp") - -;; Utils -(load "util.lisp") - -;; Config file importing -(load "config.lisp") - -;; Load the UI -(load "ui.lisp") - -;; The timing logic -(load "speedrun.lisp") ;; Define command line arguments (opts:define-opts @@ -26,10 +10,6 @@ :long "import" :arg-parser #'identity)) -(defmacro when-option ((options opt) &body body) - `(let ((it (getf ,options ,opt))) - (when it - ,@body))) (defun main () (let ((options (opts:get-opts))) (when-option (options :import) |