summaryrefslogtreecommitdiffstats
path: root/registration.rb
blob: de9ec755c53c5f0bf3a5213d57ac1f2a4552aa12 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
require 'sinatra/base'

class RegistrationApp < Sinatra::Base

  get '/' do
    erb :index
  end

  run! if app_file == $0
end