Files
bit/app/controllers/ping.cr
T
2024-05-13 08:14:47 +02:00

11 lines
194 B
Crystal

require "../lib/controller.cr"
module App::Controllers::Ping
class Get < App::Lib::BaseController
def call(env)
response = {"pong" => "ok"}
response.to_json
end
end
end