diff --git a/src/kemal/route_handler.cr b/src/kemal/route_handler.cr index 6e654c1..ce45256 100644 --- a/src/kemal/route_handler.cr +++ b/src/kemal/route_handler.cr @@ -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)