Created
March 15, 2016 17:30
-
-
Save kingcons/1578041066b3ca5a266b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "sinatra/base" | |
require "json" | |
require "pry" | |
module Httpunk | |
class Api < Sinatra::Base | |
set :logging, true | |
get "/api/test" do | |
content_type :json | |
{ message: "Go go go!" }.to_json | |
end | |
run! if app_file == $0 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment