mirror of
https://github.com/hak8or/proxmox_scripts.git
synced 2025-01-15 20:07:57 +00:00
13 lines
180 B
Ruby
13 lines
180 B
Ruby
|
require 'rubygems'
|
||
|
require 'bundler/setup'
|
||
|
|
||
|
require 'sinatra'
|
||
|
|
||
|
get '/' do
|
||
|
'Hello world! :D'
|
||
|
end
|
||
|
|
||
|
get '/:text' do
|
||
|
"Hello there, I see you are accessing #{params['text']}"
|
||
|
end
|