9 lines
191 B
Common Lisp
9 lines
191 B
Common Lisp
|
(defpackage #:ningle-fbr-test/routes/hello
|
||
|
(:use #:cl)
|
||
|
(:export #:handle-get))
|
||
|
(in-package #:ningle-fbr-test/routes/hello)
|
||
|
|
||
|
(defun handle-get (params)
|
||
|
(declare (ignore params))
|
||
|
"ok")
|