Kind | Covered | All | % |
expression | 0 | 4 | 0.0 |
branch | 0 | 0 | nil |
1
(in-package :puls.ui)
2
3
(defparameter *handler*
4
(create-folder-dispatcher-and-handler
5
"/static/"
6
(merge-pathnames "static/"
7
cl-user::*project-root*)))
8
(defun pulsu-static-dispatcher (request)
9
(funcall *handler* request))
10
11
(pushnew 'pulsu-static-dispatcher *dispatch-table*)