website/src/main.lisp

23 lines
393 B
Common Lisp
Raw Normal View History

2024-10-05 22:05:26 +09:00
(defpackage #:hp
(:nicknames #:hp/main)
(:use #:cl)
(:local-nicknames (#:jg #:jingle))
(:local-nicknames (#:env #:hp/env))
(:import-from #:hp/app
#:*app*)
(:export #:start
#:stop
#:update))
(in-package #:hp)
(defun start ()
(jg:start *app*))
(defun stop ()
(jg:stop *app*))
(defun update ()
(stop)
(ql:quickload :hp/app)
(start))