Files
tuono/crates/tuono_lib/src/lib.rs
T

32 lines
745 B
Rust
Raw Normal View History

//! ## 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;
mod config;
2025-03-09 12:00:12 +01:00
mod env;
2024-07-02 21:59:30 +02:00
mod manifest;
2024-06-23 20:15:33 +02:00
mod mode;
mod payload;
mod request;
mod response;
2024-07-02 21:59:30 +02:00
mod server;
2025-03-09 17:58:45 +01:00
mod services;
2024-07-02 21:59:30 +02:00
mod ssr;
2024-07-07 12:23:54 +02:00
mod vite_reverse_proxy;
mod vite_websocket_proxy;
2024-07-02 21:59:30 +02:00
pub use mode::Mode;
pub use payload::Payload;
pub use request::Request;
pub use response::{Props, Response};
2025-03-29 10:50:58 +01:00
pub use server::{Server, tuono_internal_init_v8_platform};
2025-04-20 11:04:48 +02:00
pub use tuono_lib_macros::{Type, 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;