DistroPropaganda/code/rails32/depot_v/store.ru

11 lines
134 B
Text
Raw Normal View History

2018-11-24 13:20:20 +01:00
require 'rubygems'
require 'bundler/setup'
require './app/store'
use Rack::ShowExceptions
map '/store' do
run StoreApp.new
end