git.fiddlerwoaroof.com
Browse code

(init)

Ed Langley authored on 23/12/2018 01:12:43
Showing 4 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,2 @@
1
+*~
2
+*.fasl
0 3
new file mode 100644
... ...
@@ -0,0 +1,17 @@
1
+;;; -*- Mode:Lisp; Syntax:ANSI-Common-Lisp; Package: ASDF-USER -*-
2
+(in-package :asdf-user)
3
+
4
+(defsystem :fwoar.gluten 
5
+    :description ""
6
+    :author "Ed L <edward@elangley.org>"
7
+    :license "MIT"
8
+    :depends-on (#:alexandria
9
+                 #:uiop
10
+                 #:serapeum
11
+                 #:parenscript
12
+                 #:spinneret
13
+                 #:lass
14
+                 #:hunchentoot)
15
+    :serial t
16
+    :components ((:file "packages")
17
+                 (:file "server")))
0 18
new file mode 100644
... ...
@@ -0,0 +1,10 @@
1
+(cl:defpackage :fwoar.gluten.packages
2
+  (:use)
3
+  (:import-from :uiop :define-package)
4
+  (:import-from :cl :in-package)
5
+  (:export ))
6
+(cl:in-package :fwoar.gluten.packages)
7
+
8
+(define-package :fwoar.gluten.main
9
+    (:use :cl)
10
+  (:export :main))
0 11
new file mode 100644
... ...
@@ -0,0 +1 @@
1
+(in-package :fwoar.gluten.main)