tuono/lib.rs
1//! ## Tuono
2//! Tuono is a full-stack web framework for building React applications using Rust as the backend with a strong focus on usability and performance.
3//!
4//! You can find the full documentation at [tuono.dev](https://tuono.dev/)
5
6mod app;
7pub mod cli;
8mod commands;
9mod mode;
10mod process_manager;
11mod route;
12mod source_builder;
13mod symbols;
14mod typescript;