summaryrefslogtreecommitdiff
path: root/package.lisp
blob: f22cd6b06e8d765db46c85cfa14504ca5207ac76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
;;;; package.lisp

(defpackage #:pastiche
  (:use #:cl)
  (:import-from #:flatbind #:do>)
  (:import-from
   #:hypnotisml

   #:$
   #:<a>
   #:<body>
   #:<br>
   #:<button>
   #:<code>
   #:<div>
   #:<form>
   #:<h1>
   #:<h3>
   #:<h4>
   #:<head>
   #:<html>
   #:<input>
   #:<p>
   #:<pre>
   #:<span>
   #:<textarea>
   #:@

)
  (:local-nicknames
   (#:a #:alexandria-2)
   (#:db #:bknr.datastore)
   (#:http #:weekend)
   (#:html #:hypnotisml)))