Move initialization of attribute object
[clinton/lisp-on-lines.git] / src / packages.lisp
index b0aa651..e65ff7c 100644 (file)
@@ -1,22 +1,30 @@
 (defpackage #:lisp-on-lines
   (:use 
-       #:common-lisp
-       #:contextl)
+   :common-lisp
+   #:contextl
+   #:closer-mop
+   #:alexandria)
   (:nicknames #:lol)
-
   (:export
-
+   
+;; Descriptions
    #:find-description
-   #:ensure-description
    #:define-description
+   #: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))