Module bits

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

View File

@ -0,0 +1,6 @@
[package]
name = "communicator"
version = "0.1.0"
authors = ["Dan Buch <dan@meatballhat.com>"]
[dependencies]

View File

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

View File

@ -0,0 +1,11 @@
mod client;
mod network;
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}

View File

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

View File

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