2bca20d5594ab1d68048c9ee4720b2b179e53ff6
[clinton/lisp-on-lines.git] / src / packages.lisp
1 (defpackage #:lisp-on-lines
2 (:use
3 :common-lisp
4 #:contextl
5 #:closer-mop
6 #:postmodern
7 #:alexandria)
8 (:nicknames #:lol)
9 (:export
10
11 ;; ROFL stuff here temporarily
12 #:standard-db-access-class
13 #:make-dao-from-row
14 #:described-db-access-class
15
16 ;; Descriptions
17 #:find-description
18 #:define-description
19 #:described-class
20 #:with-active-descriptions
21
22 ;; Displays
23 #:define-display
24 #:display
25 #:display-using-description
26 #:*display*
27 #:*object*
28
29 ;; Attributes
30 #:find-attribute
31 #:attribute
32 #:attributes
33 #:attribute-label
34 #:attribute-function
35 #:attribute-value))
36
37