aboutsummaryrefslogtreecommitdiff
path: root/interfaces/http/http.rb
blob: 0a8457c85e06523c6737b6b58d22ed3a05b4d7b6 (plain)
1
2
3
4
5
6
7
8
9
10
require 'sinatra/base'
require_relative '../ruby/ruby'
require_relative 'web/web'

$config = Config.first

class HTTPInterface < Sinatra::Base
  use WebInterface
  run! if app_file == $0
end