-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcu-openstack.asd
More file actions
30 lines (28 loc) · 989 Bytes
/
Copy pathcu-openstack.asd
File metadata and controls
30 lines (28 loc) · 989 Bytes
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
;;;; cu-openstack.asd
(asdf:defsystem #:cu-openstack
:description "A simple OpenStack web application/middleware."
:author "Smith Dhumbumroong <zodmaner@gmail.com>"
:license "MIT"
:depends-on (#:hunchentoot
#:cl-who
#:cl-pass
#:datafly
#:uri-template
#:trivial-openstack)
:serial t
:components ((:module "models"
:serial t
:components
((:file "package")
(:file "models")
(:file "config")
(:file "authentication")
(:file "openstack")))
(:module "views"
:serial t
:components
((:file "package")
(:file "views")))
(:file "package")
(:file "routes")
(:file "cu-openstack")))