1 2 3 4 5 6 7 8 9 10
//! Server entry point for `termstage`. mod assets; mod cli; mod web; #[tokio::main] async fn main() -> anyhow::Result<()> { cli::run().await }