-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.lisp
40 lines (38 loc) · 975 Bytes
/
package.lisp
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
35
36
37
38
39
(in-package :cl)
(defpackage :smart-server ;; TODO: Change to neverland ?
(:nicknames :server :smart :ss :neverland)
(:use #:cl
#:celwk
#:hunchentoot
#:hunchensocket
#:cl-ppcre
#:do-urlencode
#:flexi-streams
#:com.gigamonkeys.json)
(:export #:*neverland*
#:*smart-acceptors*
#:*last-request*
#:try-fetch-location
#:express-status-json
#:create-smartor
#:create-land
#:smart+
#:smart=>
#:smart-acceptor
#:land+
#:land=>
#:@next
#:@continue
#:land-acceptor
#:ip-location
#:delete-smart-routes
#:connect-postgres
#:disconnect-postgres
#:pooled-query
#:query-arrays
#:query-json
#:<-sql
#:<=sql
#:sql->
#:sql=>
#:*query-type*))