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