diff options
Diffstat (limited to 'rossweisse/README.md')
| -rw-r--r-- | rossweisse/README.md | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/rossweisse/README.md b/rossweisse/README.md index cbcf53a..117bff8 100644 --- a/rossweisse/README.md +++ b/rossweisse/README.md @@ -9,8 +9,6 @@ Rossweisse is in it's infancy, and a much comprehensive interface is planned. For now, a simple Rosswiesse router can be implemented like this: ```rust -use rossweisse::route; - #[rossweisse::router] struct Router { _phantom: (), @@ -18,7 +16,7 @@ struct Router { #[rossweisse::router] impl Router { - #[route(index)] + #[rossweisse::route(index)] pub fn index( _context: windmark::context::RouteContext, ) -> windmark::Response { |