Rename hp to website

This commit is contained in:
Akira Tempaku 2025-05-02 09:39:55 +09:00
commit e1905255d7
Signed by: paku
GPG key ID: 5B4E8402BCC50607
21 changed files with 77 additions and 70 deletions

View file

@ -1,13 +1,13 @@
(defpackage #:hp
(:nicknames #:hp/main)
(defpackage #:website
(:nicknames #:website/main)
(:use #:cl)
(:import-from #:clack)
(:import-from #:hp/app
(:import-from #:website/app
#:*app*)
(:export #:start
#:stop
#:reload))
(in-package #:hp)
(in-package #:website)
(defparameter *handler* nil)
@ -28,5 +28,5 @@
(defun reload ()
(stop)
(ql:quickload :hp/app)
(ql:quickload :website/app)
(start))