More mod and publicity bits
This commit is contained in:
parent
69409fe528
commit
25f25b8f1a
@ -1,2 +1,2 @@
|
|||||||
fn connect() {
|
pub fn connect() {
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
mod client;
|
pub mod client;
|
||||||
|
|
||||||
mod network;
|
pub mod network;
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
|
5
rustbook/communicator/src/main.rs
Normal file
5
rustbook/communicator/src/main.rs
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
extern crate communicator;
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
communicator::client::connect();
|
||||||
|
}
|
@ -1,4 +1,4 @@
|
|||||||
fn connect() {
|
pub fn connect() {
|
||||||
}
|
}
|
||||||
|
|
||||||
mod server;
|
pub mod server;
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
fn connect() {
|
pub fn connect() {
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user