summaryrefslogtreecommitdiffstats
path: root/registration.rb
diff options
context:
space:
mode:
Diffstat (limited to 'registration.rb')
-rw-r--r--registration.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/registration.rb b/registration.rb
new file mode 100644
index 0000000..de9ec75
--- /dev/null
+++ b/registration.rb
@@ -0,0 +1,10 @@
+require 'sinatra/base'
+
+class RegistrationApp < Sinatra::Base
+
+ get '/' do
+ erb :index
+ end
+
+ run! if app_file == $0
+end