ningle-fbr/tests/routes/hello.lisp

9 lines
191 B
Common Lisp
Raw Normal View History

2024-12-22 09:33:49 +00:00
(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")