Move tons of stuff into oldstuff/

This commit is contained in:
2020-06-04 09:54:59 -04:00
parent 49038bb8ef
commit aa1345b6ed
213 changed files with 0 additions and 12 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 @@
pub fn connect() {
}

View File

@@ -0,0 +1,13 @@
pub mod client;
pub mod network;
#[cfg(test)]
mod tests {
use super::client;
#[test]
fn it_works() {
client::connect();
}
}

View File

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

View File

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

View File

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