Skip to content

Instantly share code, notes, and snippets.

@thilonel
Created March 25, 2016 14:11
Show Gist options
  • Save thilonel/33875cdc8d444f0c8c85 to your computer and use it in GitHub Desktop.
Save thilonel/33875cdc8d444f0c8c85 to your computer and use it in GitHub Desktop.
simple_api
require 'rack/app'
class App < Rack::App
desc 'health check endpoint'
get '/' do
'OK'
end
get '/hello' do
return 'Hello World'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment