init
This commit is contained in:
commit
62788c1b26
23 changed files with 1532 additions and 0 deletions
14
harsh-common/src/lib.rs
Normal file
14
harsh-common/src/lib.rs
Normal 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;
|
Loading…
Add table
Add a link
Reference in a new issue