domi-server 0.1.0

DOMicile live-server library (Phase 2c).
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! `domi` binary entry point.
//!
//! Parses CLI args via `domi_server::tools::cli::run`, which dispatches to the
//! requested subcommand and returns a process exit code.

#![warn(missing_debug_implementations)]

use domi_server::tools;

#[tokio::main]
async fn main() {
    let code = tools::run().await;
    std::process::exit(code);
}