14 lines
247 B
Crystal
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
|