Remove ws_routes from route handler

This commit is contained in:
Serdar Dogruyol 2017-09-10 15:45:57 +03:00
parent 5f834f8873
commit e07be72dcf
1 changed files with 0 additions and 3 deletions

View File

@ -6,13 +6,10 @@ module Kemal
class RouteHandler
include HTTP::Handler
INSTANCE = new
property http_routes
property ws_routes
def initialize
@http_routes = Radix::Tree(Route).new
@ws_routes = Radix::Tree(String).new
end
def call(context : HTTP::Server::Context)