Module bits
This commit is contained in:
2
rustbook/communicator/src/client.rs
Normal file
2
rustbook/communicator/src/client.rs
Normal file
@@ -0,0 +1,2 @@
|
||||
fn connect() {
|
||||
}
|
11
rustbook/communicator/src/lib.rs
Normal file
11
rustbook/communicator/src/lib.rs
Normal file
@@ -0,0 +1,11 @@
|
||||
mod client;
|
||||
|
||||
mod network;
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
#[test]
|
||||
fn it_works() {
|
||||
assert_eq!(2 + 2, 4);
|
||||
}
|
||||
}
|
4
rustbook/communicator/src/network/mod.rs
Normal file
4
rustbook/communicator/src/network/mod.rs
Normal file
@@ -0,0 +1,4 @@
|
||||
fn connect() {
|
||||
}
|
||||
|
||||
mod server;
|
2
rustbook/communicator/src/network/server.rs
Normal file
2
rustbook/communicator/src/network/server.rs
Normal file
@@ -0,0 +1,2 @@
|
||||
fn connect() {
|
||||
}
|
Reference in New Issue
Block a user