Files
bit/app/controllers/ping.cr
T
2025-03-18 11:04:50 +01:00

14 lines
247 B
Crystal

require "../lib/controller.cr"
module App::Controllers
class PingController < App::Lib::BaseController
def initialize(@env : HTTP::Server::Context)
super(@env)
end
def ping
render_json({data: "pong"})
end
end
end