require './app'
if settings.environment == :production
run Rack::URLMap.new("/api" => Sinatra::Application.new)
else
run Sinatra::Application
end