summaryrefslogtreecommitdiffstats
path: root/src/main.rs
blob: 6871406b757f968615d3bb89839655adf4a2bf33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use anyhow::Result;

extern crate clap_v3 as clap;

pub mod cli;
pub mod client;
pub mod config;
pub mod consts;
pub mod ipfs_client;
pub mod types;

#[tokio::main]
async fn main() -> Result<()> {
    let _ = env_logger::try_init()?;
    let app = crate::cli::app();
    Ok(())
}