Browse Source

Moved to genie.lisp

Samuel W. Flint 8 years ago
parent
commit
c2c458fb00
2 changed files with 20 additions and 21 deletions
  1. 20 1
      genie.lisp
  2. 0 20
      package.lisp

+ 20 - 1
genie.lisp

@@ -2,7 +2,26 @@
 ;;;;
 ;;;; Copyright (c) 2015 Samuel Flint <swflint@lisp.technology>
 
+(restas:define-module #:genie
+  (:use #:cl
+        #:lambdalite
+        #:config-parser
+        #:restas
+        #:cl-who
+        #:iterate)
+  (:import-from #:ironclad
+                #:pbkdf2-hash-password
+                #:byte-array-to-hex-string
+                #:hex-string-to-byte-array)
+  (:import-from #:hunchentoot
+                #:post-parameter
+                #:start-session
+                #:session-value)
+  (:import-from #:html-template
+                #:create-template-printer)
+  (:import-from #:lass
+                #:compile-and-write))
+
 (in-package #:genie)
 
 ;;; "genie" goes here. Hacks and glory await!
-

+ 0 - 20
package.lisp

@@ -20,23 +20,3 @@
            new-death
            new-marriage
            new-divorce))
-
-(restas:define-module #:genie
-  (:use #:cl
-        #:lambdalite
-        #:config-parser
-        #:restas
-        #:cl-who
-        #:iterate)
-  (:import-from #:ironclad
-                #:pbkdf2-hash-password
-                #:byte-array-to-hex-string
-                #:hex-string-to-byte-array)
-  (:import-from #:hunchentoot
-                #:post-parameter
-                #:start-session
-                #:session-value)
-  (:import-from #:html-template
-                #:create-template-printer)
-  (:import-from #:lass
-                #:compile-and-write))