Skip to content

Commit

Permalink
rename sub-folder to message_content
Browse files Browse the repository at this point in the history
  • Loading branch information
kafonek committed Nov 23, 2023
1 parent ea92b8f commit 094f91f
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/actions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use std::task::{Context, Poll, Waker};

use tokio::sync::{mpsc, Mutex};

use crate::jupyter::messages::status::KernelStatus;
use crate::jupyter::message_content::status::KernelStatus;
use crate::jupyter::request::Request;
use crate::jupyter::response::Response;

Expand Down
2 changes: 1 addition & 1 deletion src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use tokio::sync::{mpsc, Notify, RwLock};
use zeromq::{DealerSocket, Socket, SocketRecv, SocketSend, SubSocket, ZmqMessage};

use crate::actions::{Action, Handler};
use crate::jupyter::messages::kernel_info::KernelInfoRequest;
use crate::jupyter::message_content::kernel_info::KernelInfoRequest;
use crate::jupyter::request::Request;
use crate::jupyter::response::Response;
use crate::jupyter::wire_protocol::WireProtocol;
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/jupyter/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pub mod header;
pub mod messages;
pub mod message_content;
pub mod metadata;
pub mod wire_protocol;

Expand Down
4 changes: 2 additions & 2 deletions src/jupyter/request.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use crate::jupyter::message::Message;
use crate::jupyter::messages::execute::ExecuteRequest;
use crate::jupyter::messages::kernel_info::KernelInfoRequest;
use crate::jupyter::message_content::execute::ExecuteRequest;
use crate::jupyter::message_content::kernel_info::KernelInfoRequest;
use crate::jupyter::wire_protocol::WireProtocol;

#[derive(Debug)]
Expand Down
4 changes: 2 additions & 2 deletions src/jupyter/response.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use crate::jupyter::header::Header;
use crate::jupyter::message::Message;
use crate::jupyter::messages::kernel_info::KernelInfoReply;
use crate::jupyter::messages::status::Status;
use crate::jupyter::message_content::kernel_info::KernelInfoReply;
use crate::jupyter::message_content::status::Status;
use crate::jupyter::metadata::Metadata;
use crate::jupyter::wire_protocol::WireProtocol;
use serde::{Deserialize, Serialize};
Expand Down

0 comments on commit 094f91f

Please sign in to comment.