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

15 lines
368 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/)
mod app;
pub mod cli;
2025-03-09 17:58:45 +01:00
mod commands;
mod mode;
2025-04-01 18:20:38 +02:00
mod process_manager;
mod route;
mod source_builder;
2025-04-20 11:04:48 +02:00
mod symbols;
mod typescript;