mirror of
https://github.com/Deathemonic/BA-AD.git
synced 2025-07-23 09:37:30 +02:00
13 lines
284 B
Rust
13 lines
284 B
Rust
use baad::cli::{parse, Args};
|
|
use baad_core::VERBOSE;
|
|
|
|
use anyhow::Result;
|
|
use clap::Parser;
|
|
use std::sync::atomic::Ordering;
|
|
|
|
#[tokio::main]
|
|
async fn main() -> Result<()> {
|
|
let args = Args::parse();
|
|
VERBOSE.store(args.verbose, Ordering::Relaxed);
|
|
parse::run(args).await
|
|
} |