diff options
Diffstat (limited to 'minecraft-client/src')
| -rw-r--r-- | minecraft-client/src/lib.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/minecraft-client/src/lib.rs b/minecraft-client/src/lib.rs new file mode 100644 index 00000000..2670101f --- /dev/null +++ b/minecraft-client/src/lib.rs @@ -0,0 +1,10 @@ +use minecraft_protocol; + +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + let result = 2 + 2; + assert_eq!(result, 4); + } +} |
