diff --git a/src/kemal/route.cr b/src/kemal/route.cr index defb357..8703f0d 100644 --- a/src/kemal/route.cr +++ b/src/kemal/route.cr @@ -3,7 +3,7 @@ module Kemal # It takes 3 parameters: Method, path and a block to specify # what action to be done if the route is matched. class Route - getter handler + getter method, path, handler @handler : HTTP::Server::Context -> String @method : String