ningle-fbr/tests/routes/nested/page.lisp
2024-12-22 18:33:49 +09:00

8 lines
203 B
Common Lisp

(defpackage #:ningle-fbr-test/routes/nested/page
(:use #:cl)
(:export #:handle-get))
(in-package #:ningle-fbr-test/routes/nested/page)
(defun handle-get (params)
(declare (ignore params))
"ok")