summaryrefslogtreecommitdiffstats
path: root/zellij-server/src/thread_bus.rs
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2022-12-06 15:34:43 +0100
committerGitHub <noreply@github.com>2022-12-06 15:34:43 +0100
commitb7adfcc581d40952ec5d1f5a853669322e895bd7 (patch)
treeba245468ddc56834782604d1829163f8121bd087 /zellij-server/src/thread_bus.rs
parentc2a6156a6b4ae8cadb1e48cfb8763c0d9233d9f9 (diff)
refactor(plugins): fix plugin loading data flow (#1995)
Diffstat (limited to 'zellij-server/src/thread_bus.rs')
-rw-r--r--zellij-server/src/thread_bus.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/zellij-server/src/thread_bus.rs b/zellij-server/src/thread_bus.rs
index 28c3082e7..8d1722427 100644
--- a/zellij-server/src/thread_bus.rs
+++ b/zellij-server/src/thread_bus.rs
@@ -1,8 +1,8 @@
//! Definitions and helpers for sending and receiving messages between threads.
use crate::{
- os_input_output::ServerOsApi, pty::PtyInstruction, pty_writer::PtyWriteInstruction,
- screen::ScreenInstruction, wasm_vm::PluginInstruction, ServerInstruction,
+ os_input_output::ServerOsApi, plugins::PluginInstruction, pty::PtyInstruction,
+ pty_writer::PtyWriteInstruction, screen::ScreenInstruction, ServerInstruction,
};
use zellij_utils::errors::prelude::*;
use zellij_utils::{channels, channels::SenderWithContext, errors::ErrorContext};