1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/sample/webrick/demo-servlet.rb

7 lines
128 B
Ruby
Raw Normal View History

require "webrick"
require "./demo-app"
class DemoServlet < WEBrick::HTTPServlet::AbstractServlet
include DemoApplication
end