summaryrefslogtreecommitdiffstats
path: root/cli/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/src/main.rs')
-rw-r--r--cli/src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/src/main.rs b/cli/src/main.rs
index 99ac4d1..c4050ac 100644
--- a/cli/src/main.rs
+++ b/cli/src/main.rs
@@ -1,7 +1,7 @@
use anyhow::Result;
mod cli;
-mod commands;
+mod profile;
#[tokio::main]
async fn main() -> Result<()> {
@@ -9,7 +9,7 @@ async fn main() -> Result<()> {
let matches = crate::cli::app().get_matches();
match matches.subcommand() {
- Some(("profile", matches)) => crate::commands::profile(matches).await,
+ Some(("profile", matches)) => crate::profile::profile(matches).await,
Some(("gui", _)) => {
unimplemented!()
},