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