chore: update API docs

This commit is contained in:
sjdonado
2025-03-16 14:21:36 +01:00
parent a066b5e5ab
commit 60ebac7150
3 changed files with 18 additions and 24 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ require "../lib/controller.cr"
module App::Controllers::Ping
class Get < App::Lib::BaseController
def call(env)
response = {"pong" => "ok"}
response = {"data" => "pong"}
response.to_json
end
end