-
Notifications
You must be signed in to change notification settings - Fork 1
/
cta.controller.asd
15 lines (15 loc) · 1001 Bytes
/
cta.controller.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(defsystem :cta.controller
:license "Public Domain"
:author "Eli Naeher"
:description "Controller for reading from the bus tracker API and writing the results to the database"
:version (:read-file-form "VERSION")
:depends-on (:cta.api :local-time :cl-postgres+local-time :trivial-timers :swank :fiveam)
:components ((:module "controller"
:components ((:file "package")
(:file "variables" :depends-on ("package"))
(:file "routes-and-stops" :depends-on ("variables"))
(:file "stop-events" :depends-on ("variables"))
(:file "timers" :depends-on ("routes-and-stops" "stop-events"))
(:file "control" :depends-on ("timers"))
(:file "init" :depends-on ("control"))
(:file "tests" :depends-on ("stop-events"))))))