forked from gtod/postgres-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
postgres-json.asd
34 lines (34 loc) · 988 Bytes
/
postgres-json.asd
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
(asdf:defsystem postgres-json
:author "Gregory Tod <[email protected]>"
:version "0.2.0"
:license "MIT"
:homepage "https://github.com/gtod/postgres-json"
:description "Store and query JSON documents in PostgreSQL"
:depends-on (#:alexandria
#:postmodern
#:global-vars
#:log4cl
#:yason)
:serial t
:components
((:file "package")
(:file "util")
(:file "errors")
(:file "specials")
(:module "postgres"
:serial t
:components ((:file "s-sql")
(:file "postmodern")
(:file "util")
(:file "commands")
(:file "transactions")))
(:module "model"
:serial t
:components ((:file "transactions")
(:file "user-query")
(:file "types")
(:file "model")
(:file "history")
(:file "query")
(:file "interface")))
(:file "interface")))