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 /src | |
parent | 55cbb146e64eac0d5ce5188f66551aa1a6dd9e97 (diff) |
added package.lisp
Diffstat (limited to 'src')
-rw-r--r-- | src/main.lisp | 8 | ||||
-rw-r--r-- | src/package.lisp | 8 |
2 files changed, 8 insertions, 8 deletions
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)) |