1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
use structopt::StructOpt;
use crate::command::types::Opts;
mod bridge;
mod cli;
mod command;
mod service;
mod types;
#[tokio::main]
async fn main() -> color_eyre::Result<()> {
support_common::initialize::init()?;
let opt = Opts::from_args();
cli::execute(opt).await?;
Ok(())
}