Attributes for routes. Indicates the method used (case sensitive, usually uppercase), whether the method can have a body and the path.
@Route("GET", false, "hello", "world") // GET /hello/world @Post // POST / @Delete("resource", "([a-z]+)") // DELETE /resource/:name
See Implementation
Attributes for routes. Indicates the method used (case sensitive, usually uppercase), whether the method can have a body and the path.