diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-04-30 22:30:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-01 02:30:40 +0000 |
commit | 486437fee1ac53610a901b07bda91909844ec9ab (patch) | |
tree | 06f13c58b2cf1be9fd0bbf1ed030ce05d67255f3 /cli/tools/jupyter/mod.rs | |
parent | f2216c90a76775f7af6fa06b96b6e56dc5810284 (diff) |
refactor(jupyter): move communication methods out of data structs (#23622)
Moves the communication methods out of the data structs and onto the
`Connection` struct.
Diffstat (limited to 'cli/tools/jupyter/mod.rs')
-rw-r--r-- | cli/tools/jupyter/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
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, |