# Method Decorators

-   @Delete("path") -> app.delete
-   @Get("path") -> app.get
-   @Options("path") -> app.options
-   @Post("path") -> app.post
-   @Put("path") -> app.put
-   @Patch("path") -> app.patch
-   @All("path") -> app.all
