run_cli

Function run_cli 

Source
pub async fn run_cli() -> Result<()>
Expand description

CLI entry point.

Initialises tracing (honouring RUST_LOG; defaults to info) and dispatches the requested sub-command.

ยงExample

use stygian_graph::application::cli::run_cli;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    run_cli().await
}