API CHANGE: Removed the OBJECT arg from attribute-value
[clinton/lisp-on-lines.git] / src / packages.lisp
index b0aa651..b10abdb 100644 (file)
@@ -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))