Make Route a Struct

This commit is contained in:
sdogruyol 2017-05-13 18:39:11 -07:00
parent ce024ba748
commit 0724e07c22
2 changed files with 10 additions and 1 deletions

View file

@ -2,7 +2,7 @@ module Kemal
# Route is the main building block of Kemal.
# It takes 3 parameters: Method, path and a block to specify
# what action to be done if the route is matched.
class Route
struct Route
getter method, path, handler
@handler : HTTP::Server::Context -> String
@method : String