More mod and publicity bits

cat-town
Dan Buch 6 years ago
parent 69409fe528
commit 25f25b8f1a
Signed by: meatballhat
GPG Key ID: 9685130D8B763EA7

@ -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)]
mod tests {

@ -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…
Cancel
Save