website/src/app.lisp

16 lines
360 B
Common Lisp
Raw Normal View History

2024-02-02 01:07:19 +09:00
(defpackage #:hp/app
(:use #:cl)
(:local-nicknames (#:routes #:hp/routes/*))
(:import-from #:lack)
(:export #:*app*))
(in-package #:hp/app)
(defparameter *app*
(lack:builder (:static
:path "/static/"
:root (asdf:system-relative-pathname :hp "static/"))
routes:*index-app*))
; for clackup cmd
*app*