skeksis/config.ru
2023-08-07 21:02:09 -04:00

19 lines
288 B
Ruby

require 'skeksis'
class SkeksisApp
def initialize
@skeksis = Skeksis::GemBridge.new
end
def call(env)
status = 200
headers = { "content-type" => "text/html" }
body = @skeksis.query(env['PATH_INFO'], env)
[status, headers, body]
end
end
run SkeksisApp.new