2024-12-18 15:13:03 +07:00
|
|
|
//! ## 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/)
|
|
|
|
|
|
2024-07-07 12:23:54 +02:00
|
|
|
mod catch_all;
|
2025-01-23 18:43:17 +01:00
|
|
|
mod config;
|
2024-11-16 10:50:02 +01:00
|
|
|
mod logger;
|
2024-07-02 21:59:30 +02:00
|
|
|
mod manifest;
|
2024-06-23 20:15:33 +02:00
|
|
|
mod mode;
|
2024-05-19 12:22:56 +02:00
|
|
|
mod payload;
|
|
|
|
|
mod request;
|
|
|
|
|
mod response;
|
2024-07-02 21:59:30 +02:00
|
|
|
mod server;
|
|
|
|
|
mod ssr;
|
2024-07-07 12:23:54 +02:00
|
|
|
mod vite_reverse_proxy;
|
|
|
|
|
mod vite_websocket_proxy;
|
2024-05-19 12:22:56 +02:00
|
|
|
|
2024-07-02 21:59:30 +02:00
|
|
|
pub use mode::Mode;
|
2024-05-19 12:22:56 +02:00
|
|
|
pub use payload::Payload;
|
|
|
|
|
pub use request::Request;
|
2024-06-15 12:15:51 +02:00
|
|
|
pub use response::{Props, Response};
|
2025-01-28 19:08:18 +01:00
|
|
|
pub use server::{tuono_internal_init_v8_platform, Server};
|
2024-11-21 19:02:11 +01:00
|
|
|
pub use tuono_lib_macros::{api, handler};
|
2024-07-02 21:59:30 +02:00
|
|
|
|
|
|
|
|
// Re-exports
|
|
|
|
|
pub use axum;
|
2024-12-07 11:10:47 +01:00
|
|
|
pub use axum_extra::extract::cookie;
|
2025-01-28 19:08:18 +01:00
|
|
|
pub use ssr_rs::Ssr;
|
2024-07-02 21:59:30 +02:00
|
|
|
pub use tokio;
|