mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-25 12:52:47 -07:00
32 lines
745 B
Rust
32 lines
745 B
Rust
//! ## Tuono
|
|
//! Tuono is a full-stack web framework for building React applications using Rust as the backend with a strong focus on usability and performance.
|
|
//!
|
|
//! You can find the full documentation at [tuono.dev](https://tuono.dev/)
|
|
|
|
mod catch_all;
|
|
mod config;
|
|
mod env;
|
|
mod manifest;
|
|
mod mode;
|
|
mod payload;
|
|
mod request;
|
|
mod response;
|
|
mod server;
|
|
mod services;
|
|
mod ssr;
|
|
mod vite_reverse_proxy;
|
|
mod vite_websocket_proxy;
|
|
|
|
pub use mode::Mode;
|
|
pub use payload::Payload;
|
|
pub use request::Request;
|
|
pub use response::{Props, Response};
|
|
pub use server::{Server, tuono_internal_init_v8_platform};
|
|
pub use tuono_lib_macros::{Type, api, handler};
|
|
|
|
// Re-exports
|
|
pub use axum;
|
|
pub use axum_extra::extract::cookie;
|
|
pub use ssr_rs::Ssr;
|
|
pub use tokio;
|