Beginnings of secret admin w/dialog

This commit is contained in:
2024-07-03 20:54:19 -03:00
parent 1f02e0af11
commit 6d1651f3ec
9 changed files with 152 additions and 16 deletions

View File

@ -1,7 +1,7 @@
require "kemal"
# This is a kemal app, you can add handlers, middleware, etc.
# A basic hello world get endpoint
get "/" do
"Hello World Crystal!"
@ -10,7 +10,7 @@ end
# The `/ping/` endpoint is configured in the container as a healthcheck
# You can make it better by checking that your database is responding
# or whatever checks you think are important
#
#
get "/ping/" do
"OK"
end