X-Git-Url: https://git.hcoop.net/clinton/lisp-on-lines.git/blobdiff_plain/c7e4e4bc1293b7db3863dee16999d9f24d44f078..e8d4fa4537a1655714ad8bbbf9b7ba2d85ead959:/src/packages.lisp diff --git a/src/packages.lisp b/src/packages.lisp index b0aa651..b10abdb 100644 --- a/src/packages.lisp +++ b/src/packages.lisp @@ -1,22 +1,40 @@ (defpackage #:lisp-on-lines (:use - #:common-lisp - #:contextl) + :common-lisp + #:contextl + #:closer-mop + #:postmodern + #:alexandria) (:nicknames #:lol) - (:export +;; ROFL stuff here temporarily + #:standard-db-access-class + #:make-dao-from-row + #:described-db-access-class + #:select-only + #:select + +;; Descriptions #:find-description - #:ensure-description #:define-description + #:described-object + #:described-class + #:with-active-descriptions + ;; Displays #:define-display #:display + #:display-using-description #:*display* #:*object* + ;; Attributes #:find-attribute + #:attribute + #:attributes #:attribute-label + #:attribute-function + #:attribute-value)) + -(cl:defpackage #:lol-test - (:use #:cl #:lisp-on-lines #:stefil #:contextl))