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

extern crate clap_v3 as clap;

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

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