summaryrefslogtreecommitdiffstats
path: root/src/app_state.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/app_state.rs')
-rw-r--r--src/app_state.rs20
1 files changed, 11 insertions, 9 deletions
diff --git a/src/app_state.rs b/src/app_state.rs
index 875bc72..5952929 100644
--- a/src/app_state.rs
+++ b/src/app_state.rs
@@ -1,13 +1,15 @@
-use crate::{
- app_context::AppContext,
- browser_states::BrowserState,
- commands::Command,
- errors::{ProgramError, TreeBuildError},
- external::Launchable,
- screens::Screen,
- task_sync::TaskLifetime,
+use {
+ crate::{
+ app_context::AppContext,
+ browser_states::BrowserState,
+ commands::Command,
+ errors::{ProgramError, TreeBuildError},
+ external::Launchable,
+ screens::Screen,
+ task_sync::TaskLifetime,
+ },
+ std::io::Write,
};
-use std::io::Write;
/// Result of applying a command to a state
pub enum AppStateCmdResult {