From 54dc751dca00967aa103360122cdfe6cbfa161be Mon Sep 17 00:00:00 2001 From: Myrddin Dundragon Date: Thu, 25 Sep 2025 11:37:36 -0400 Subject: [PATCH] Fixing the Router for the exmaple. --- blog_test/src/main.rs | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/blog_test/src/main.rs b/blog_test/src/main.rs index 02b0fff..a7a7e16 100644 --- a/blog_test/src/main.rs +++ b/blog_test/src/main.rs @@ -103,13 +103,11 @@ pub enum Page #[route("/")] Home {}, -// #[nest("/blog")] - #[child("/blog")] - Bard - { - child: bard::Page - }, -// #[end_nest] + #[child("/blog")] + Bard + { + child: bard::Page + }, #[route("/:..route")] PageNotFound { route: Vec }