genie.lisp 712 B

123456789101112131415161718192021222324252627
  1. ;;;; genie.lisp
  2. ;;;;
  3. ;;;; Copyright (c) 2015 Samuel Flint <swflint@lisp.technology>
  4. (restas:define-module #:genie
  5. (:use #:cl
  6. #:lambdalite
  7. #:config-parser
  8. #:restas
  9. #:cl-who
  10. #:iterate)
  11. (:import-from #:ironclad
  12. #:pbkdf2-hash-password
  13. #:byte-array-to-hex-string
  14. #:hex-string-to-byte-array)
  15. (:import-from #:hunchentoot
  16. #:post-parameter
  17. #:start-session
  18. #:session-value)
  19. (:import-from #:html-template
  20. #:create-template-printer)
  21. (:import-from #:lass
  22. #:compile-and-write))
  23. (in-package #:genie)
  24. ;;; "genie" goes here. Hacks and glory await!