summaryrefslogtreecommitdiffstats
path: root/zellij-client/src/fake_client.rs
diff options
context:
space:
mode:
Diffstat (limited to 'zellij-client/src/fake_client.rs')
-rw-r--r--zellij-client/src/fake_client.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/zellij-client/src/fake_client.rs b/zellij-client/src/fake_client.rs
index 2199e12fb..7338d633a 100644
--- a/zellij-client/src/fake_client.rs
+++ b/zellij-client/src/fake_client.rs
@@ -3,8 +3,6 @@
//! Multiple actions at the same time can be dispatched.
use log::debug;
use std::{fs, path::PathBuf, thread};
-use zellij_tile::prelude::{ClientId, Style};
-use zellij_utils::errors::ContextType;
use crate::{
command_is_executing::CommandIsExecuting, input_handler::input_actions,
@@ -14,6 +12,8 @@ use crate::{
use zellij_utils::{
channels::{self, ChannelWithContext, SenderWithContext},
cli::CliArgs,
+ data::{ClientId, Style},
+ errors::ContextType,
input::{actions::Action, config::Config, layout::LayoutFromYaml, options::Options},
ipc::{ClientAttributes, ClientToServerMsg, ServerToClientMsg},
};