-
Notifications
You must be signed in to change notification settings - Fork 0
/
bartleby.asd
35 lines (34 loc) · 1.53 KB
/
bartleby.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
35
;;;; bartleby.asd
;;;;
;;;; Copyright Izaak Walton (c) 2022
(asdf:defsystem #:bartleby
:version "0.0.1"
:author "Izaak Walton <[email protected]>"
:license "GNU General Purpose License"
:description "Scheduling System"
:depends-on ("local-time" "mito" "alexa" "cl-pdf")
:serial t
:components ((:module "src"
:serial t
:components ((:file "package")
(:file "sql-config")
(:file "system-generics")
(:file "time")
(:file "dates")
(:file "timestamps")
(:file "contact")
(:file "clients")
(:file "rooms")
(:file "employees")
(:file "services")
(:file "appointments")
(:file "makeups")
(:file "availability")
(:file "receipts")
(:file "check-out")
(:file "credits")
(:file "invoices")
(:file "search")
(:module "test-populations"
:serial t
:components ((:file "test-populations")))))))