kemal/samples/json_api.cr
2015-11-09 16:20:04 -08:00

10 lines
256 B
Crystal

require "kemal"
require "json"
# You can easily access the context and set content_type like 'application/json'.
# Look how easy to build a JSON serving API.
get "/" do |env|
env.content_type = "application/json"
{name: "Serdar", age: 27}.to_json
end