From 486437fee1ac53610a901b07bda91909844ec9ab Mon Sep 17 00:00:00 2001 From: David Sherret Date: Tue, 30 Apr 2024 22:30:40 -0400 Subject: refactor(jupyter): move communication methods out of data structs (#23622) Moves the communication methods out of the data structs and onto the `Connection` struct. --- cli/tools/jupyter/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cli/tools/jupyter/mod.rs') diff --git a/cli/tools/jupyter/mod.rs b/cli/tools/jupyter/mod.rs index 6531b0339..da1c4bc4d 100644 --- a/cli/tools/jupyter/mod.rs +++ b/cli/tools/jupyter/mod.rs @@ -28,8 +28,8 @@ use tokio::sync::mpsc; use tokio::sync::mpsc::UnboundedSender; mod install; -pub(crate) mod jupyter_msg; -pub(crate) mod server; +pub mod jupyter_msg; +pub mod server; pub async fn kernel( flags: Flags, -- cgit v1.2.3