mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-06-15 18:05:50 +00:00
8 lines
77 B
Ruby
8 lines
77 B
Ruby
require 'sinatra'
|
|
|
|
get '/hi' do
|
|
"Hello World"
|
|
end
|
|
|
|
run Sinatra::Application
|