kemal/samples/json_api.cr

10 lines
269 B
Crystal
Raw Normal View History

2015-10-23 19:25:46 +00:00
require "kemal"
require "json"
# You can easily access the environment and set content_type like 'application/json'.
# Look how easy to build a JSON serving API.
get "/" do |env|
env.response.content_type = "application/json"
{name: "Serdar", age: 27}.to_json
end