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

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(())
}