diff options
author | Colin Okay <okay@toyful.space> | 2022-02-15 14:37:36 -0600 |
---|---|---|
committer | Colin Okay <okay@toyful.space> | 2022-02-15 14:37:36 -0600 |
commit | b57959ace342b83a65a8961f7a26be2f89963263 (patch) | |
tree | 6355a33dd235276178f6b08e2732fc8008df3dcc | |
parent | 55cbb146e64eac0d5ce5188f66551aa1a6dd9e97 (diff) |
added package.lisp
-rw-r--r-- | clpmfile.lock | 4 | ||||
-rw-r--r-- | oneliners.api.asd | 3 | ||||
-rw-r--r-- | src/main.lisp | 8 | ||||
-rw-r--r-- | src/package.lisp | 8 |
4 files changed, 12 insertions, 11 deletions
diff --git a/clpmfile.lock b/clpmfile.lock index 24e5b48..19a17bb 100644 --- a/clpmfile.lock +++ b/clpmfile.lock @@ -78,10 +78,10 @@ ("jonathan" :version "2020-09-25" :source "quicklisp" :systems ("jonathan")) ("lambda-riffs" :version (:commit "f7b3c081f2361f7370c80e7ff4a432241f34ce55") :source :implicit-vcs :systems ("lambda-riffs")) -("lazybones" :version (:commit "128f72863fa3f736c93175267beb23292e70e096") +("lazybones" :version (:commit "7b2f218547cd083a45f3aeed97ffc4ed67855d88") :source :implicit-vcs :systems ("lazybones" "lazybones-hunchentoot")) ("lazybones-client" :version - (:commit "42253bda23237c918edf73b790d98aad16a44b3c") :source :implicit-vcs + (:commit "15572ea0f7613a94993c49b3ee2a58e90e560a9a") :source :implicit-vcs :systems ("lazybones-client")) ("lisp-namespace" :version "2021-10-21" :source "quicklisp" :systems ("lisp-namespace")) diff --git a/oneliners.api.asd b/oneliners.api.asd index db307e4..0423edb 100644 --- a/oneliners.api.asd +++ b/oneliners.api.asd @@ -11,7 +11,8 @@ "lambda-riffs") :components ((:module "src" :components - ((:file "util") + ((:file "package") + (:file "util") (:file "main")))) :description "" :in-order-to ((test-op (test-op "oneliners.api/tests")))) diff --git a/src/main.lisp b/src/main.lisp index 97e0ffc..b956b0a 100644 --- a/src/main.lisp +++ b/src/main.lisp @@ -1,11 +1,3 @@ -(defpackage oneliners.api - (:use :cl) - (:local-nicknames (#:lzb #:lazybones) - (#:a #:alexandria-2) - (#:db #:bknr.datastore)) - (:import-from #:lazybones - #:defendpoint* - #:http-err)) (in-package :oneliners.api) ;;; DATA DEFINITIONS diff --git a/src/package.lisp b/src/package.lisp new file mode 100644 index 0000000..279eb37 --- /dev/null +++ b/src/package.lisp @@ -0,0 +1,8 @@ +(defpackage oneliners.api + (:use :cl) + (:local-nicknames (#:lzb #:lazybones) + (#:a #:alexandria-2) + (#:db #:bknr.datastore)) + (:import-from #:lazybones + #:defendpoint* + #:http-err)) |