From f01887463f0231a1ff4519aa9c1461d07b1f407b Mon Sep 17 00:00:00 2001 From: Kyle Sutherland-Cash Date: Sat, 1 May 2021 08:26:31 -0700 Subject: [PATCH] Define shared bus type --- src/common/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/mod.rs b/src/common/mod.rs index ef5180534..ba506e8b0 100644 --- a/src/common/mod.rs +++ b/src/common/mod.rs @@ -118,6 +118,7 @@ pub enum AppInstruction { Error(String), } +pub struct Bus { /// Start Zellij with the specified [`OsApi`] and command-line arguments. // FIXME this should definitely be modularized and split into different functions. pub fn start(mut os_input: Box, opts: CliArgs) {