tvl-depot/blog/src/server.lisp

11 lines
259 B
Common Lisp
Raw Normal View History

(in-package #:cl-user)
(defpackage #:server
(:documentation "Robot condemned to a life of admin work for my blog.")
(:use #:cl)
(:export :main))
(in-package #:server)
(defun main ()
"This is the main entrypoint for our application."
(hunchentoot))