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

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