feat: create route handler macro

This commit is contained in:
Valerio Ageno
2024-05-18 20:45:35 +02:00
parent 74968b27cc
commit d4c9b25b90
12 changed files with 149 additions and 43 deletions
+8
View File
@@ -0,0 +1,8 @@
pub mod ssr;
pub use ssr_rs::Ssr;
pub use tuono_lib_macros::handler;
pub enum Response {
Redirect(String),
Props(String),
}