More mod and publicity bits

This commit is contained in:
Dan Buch 2018-01-02 13:55:55 -05:00
parent 69409fe528
commit 25f25b8f1a
Signed by: meatballhat
GPG Key ID: 9685130D8B763EA7
5 changed files with 11 additions and 6 deletions

View File

@ -1,2 +1,2 @@
fn connect() {
pub fn connect() {
}

View File

@ -1,6 +1,6 @@
mod client;
pub mod client;
mod network;
pub mod network;
#[cfg(test)]
mod tests {

View File

@ -0,0 +1,5 @@
extern crate communicator;
fn main() {
communicator::client::connect();
}

View File

@ -1,4 +1,4 @@
fn connect() {
pub fn connect() {
}
mod server;
pub mod server;

View File

@ -1,2 +1,2 @@
fn connect() {
pub fn connect() {
}