termstage 0.1.0

Local browser terminal presentation tool for live demos.
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
}