diff options
| author | mo8it <mo8it@proton.me> | 2024-04-18 11:31:08 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-04-18 11:31:08 +0200 |
| commit | 2566f9aaf674458f6faff7e8aaf77bb108b7d56c (patch) | |
| tree | 8f6f1e15f51139cb8315e9670d58f7d14156362d /src/main.rs | |
| parent | 1eac00e89ae9e0ed6969f5036e9c8c43e4435e86 (diff) | |
Place mods under all imports
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index d40f978..c8940af 100644 --- a/src/main.rs +++ b/src/main.rs @@ -11,6 +11,8 @@ use std::{ process::exit, }; +use self::{app_state::AppState, dev::DevCommands, info_file::InfoFile, watch::WatchExit}; + mod app_state; mod dev; mod embedded; @@ -22,8 +24,6 @@ mod progress_bar; mod run; mod watch; -use self::{app_state::AppState, dev::DevCommands, info_file::InfoFile, watch::WatchExit}; - const CURRENT_FORMAT_VERSION: u8 = 1; const DEVELOPING_OFFICIAL_RUSTLINGS: bool = { #[allow(unused_assignments, unused_mut)] |
