2024-06-15 18:13:04 +09:00
|
|
|
(defpackage #:hp/routes/index
|
2024-06-15 16:42:44 +09:00
|
|
|
(:use #:cl
|
|
|
|
#:hsx
|
|
|
|
#:hp/response)
|
2024-04-14 16:40:47 +09:00
|
|
|
(:export #:handle-get))
|
2024-02-02 01:07:19 +09:00
|
|
|
(in-package #:hp/routes/index)
|
|
|
|
|
2024-06-01 22:21:15 +09:00
|
|
|
(defcomp page ()
|
|
|
|
(hsx
|
2024-06-16 14:13:16 +09:00
|
|
|
(h1 :class "text-primary"
|
|
|
|
"こんにちは")))
|
2024-02-02 01:07:19 +09:00
|
|
|
|
2024-04-14 16:40:47 +09:00
|
|
|
(defun handle-get (params)
|
2024-02-02 01:07:19 +09:00
|
|
|
(declare (ignore params))
|
2024-06-01 22:21:15 +09:00
|
|
|
(response (page)))
|