mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
9 lines
160 B
Ruby
9 lines
160 B
Ruby
require 'rack/lobster'
|
|
|
|
use Rack::ShowExceptions
|
|
use Rack::Auth::Basic, "Lobster 2.0" do |username, password|
|
|
'secret' == password
|
|
end
|
|
|
|
run Rack::Lobster.new
|