Fix multi-action form.
[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 #:select-only
16 #:select
17
18 ;; Descriptions
19 #:find-description
20 #:define-description
21 #:described-object
22 #:described-class
23 #:with-active-descriptions
24
25 ;; Displays
26 #:define-display
27 #:display
28 #:display-using-description
29 #:*display*
30 #:*object*
31
32 ;; Attributes
33 #:find-attribute
34 #:attribute
35 #:attributes
36 #:attribute-label
37 #:attribute-function
38 #:attribute-value))
39
40