···77mod fs;
88mod gpod;
99mod gtkgui;
1010-mod gui;
1110mod library;
1211mod model;
1312mod sync;
···1615async fn main() -> anyhow::Result<()> {
1716 log_setup();
18171919- // One day I may get back to this.
2020- // Today is not one of those days.
2118 #[cfg(feature = "gui")]
2219 {
2320 if std::env::args().count() == 1 {
2424- return gui::run().await;
2121+ return gtkgui::run().await;
2522 }
2626- }
2727-2828- if std::env::args().count() == 1 {
2929- return gtkgui::run().await;
3023 }
31243225 let c = cli::Cli::parse();