-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcl-harmony.asd
31 lines (30 loc) · 957 Bytes
/
cl-harmony.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
;;;; cl-harmony.asd
(asdf:defsystem #:cl-harmony
:description "Discord API interaction library."
:author "Birk Hirdman <[email protected]>"
:license "MIT"
:depends-on (#:alexandria
#:sxql
#:sqlite
#:drakma
#:flexi-streams
#:websocket-driver
#:bordeaux-threads
#:split-sequence
#:cl-interpol
#:metabang-bind
#:queues.simple-cqueue
#:serapeum
#:pathname-utils
#:json-mop
#:local-time
#:lparallel)
:serial t
:components ((:file "package")
(:file "utilities/utils")
(:file "logger/logger")
(:file "base/json-mop-hack")
(:file "base/constants")
(:file "base/structures")
(:file "base/discord-base")
(:file "base/api")))