This commit is contained in:
JOLIMAITRE Matthieu 2022-08-22 01:59:56 +02:00
commit 62788c1b26
23 changed files with 1532 additions and 0 deletions

14
harsh-common/src/lib.rs Normal file
View file

@ -0,0 +1,14 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
let result = 2 + 2;
assert_eq!(result, 4);
}
}
pub use client::{ClientRequest, Ping};
mod client;
pub use server::{Pong, ServerRequest};
mod server;