nitcorn :: Route :: defaultinit
# A route to an `Action` according to a `path`
class Route
# Path to this action present in the URI
var path: nullable String
init
do
var path = path
if path != null then self.path = "/" / path
end
# `Action` to activate when this route is traveled
var handler: Action
end
lib/nitcorn/server_config.nit:59,1--72,3