mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-29 05:42:47 -07:00
9 lines
133 B
Rust
9 lines
133 B
Rust
|
|
pub mod ssr;
|
||
|
|
pub use ssr_rs::Ssr;
|
||
|
|
pub use tuono_lib_macros::handler;
|
||
|
|
|
||
|
|
pub enum Response {
|
||
|
|
Redirect(String),
|
||
|
|
Props(String),
|
||
|
|
}
|