summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/main.rs b/src/main.rs
deleted file mode 100644
index 257847c..0000000
--- a/src/main.rs
+++ /dev/null
@@ -1,24 +0,0 @@
-use anyhow::Result;
-
-pub mod cli;
-pub mod client;
-mod commands;
-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 matches = crate::cli::app().get_matches();
-
- match matches.subcommand() {
- Some(("profile", matches)) => crate::commands::profile(matches).await,
- _ => unimplemented!()
- }
-
-
-}
-