ito_web/lib.rs
1//! Web server for browsing and editing Ito projects.
2//!
3//! `ito-web` provides the server-side pieces behind the Ito web UI.
4
5#![warn(missing_docs)]
6
7mod api;
8mod auth;
9mod frontend;
10mod server;
11mod terminal;
12
13/// Start the web server with the given configuration.
14pub use server::{ServeConfig, serve};