From 48ad30e078cf77e3fd5bc2f3733047681cad1c55 Mon Sep 17 00:00:00 2001 From: Gabriele Musco Date: Sat, 10 Feb 2024 10:47:46 +0100 Subject: [PATCH] chore: move main.rs imports together --- src/main.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 5b34f7f..547a747 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,4 @@ +use crate::ui::{app::Msg, cmdline_opts::CmdLineOpts}; use anyhow::Result; use constants::{resources, APP_ID, APP_NAME, GETTEXT_PACKAGE, LOCALE_DIR, RESOURCES_BASE_PATH}; use file_builders::{ @@ -12,8 +13,6 @@ use relm4::{ }; use ui::app::{App, AppInit}; -use crate::ui::{app::Msg, cmdline_opts::CmdLineOpts}; - pub mod adb; pub mod build_tools; pub mod builders;