Files
tuono/crates/tuono/src/lib.rs
T
2025-04-20 11:04:48 +02:00

15 lines
368 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 app;
pub mod cli;
mod commands;
mod mode;
mod process_manager;
mod route;
mod source_builder;
mod symbols;
mod typescript;