summaryrefslogtreecommitdiffstats
path: root/gui/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'gui/src/main.rs')
-rw-r--r--gui/src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/src/main.rs b/gui/src/main.rs
index bfa133e..67a09ec 100644
--- a/gui/src/main.rs
+++ b/gui/src/main.rs
@@ -1,7 +1,7 @@
use anyhow::Result;
+mod app;
mod cli;
-mod gui;
use distrox_lib::*;
@@ -12,7 +12,7 @@ fn main() -> Result<()> {
match matches.subcommand() {
None => {
let name = matches.value_of("name").map(String::from).unwrap(); // safe by clap
- crate::gui::run(name)
+ crate::app::run(name)
},
Some((other, _)) => {
log::error!("No subcommand {} implemented", other);