diff options
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)) |