Last active
August 29, 2015 14:07
-
-
Save mgamba/70cc9ab01a0e2d39a158 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' | |
use Rack::CommonLogger | |
use Rack::Logger | |
require 'json' | |
post '/hi/there' do | |
request.logger.info JSON.pretty_generate(request.env) | |
"success\n" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment