diff options
| author | mat <github@matdoes.dev> | 2021-12-06 00:28:40 -0600 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2021-12-06 00:28:40 -0600 |
| commit | 5029a09963b5753c1f9b7f777f28e1c0951343e7 (patch) | |
| tree | 2e0e37029bf031adc3e28713828e7d4be7336ccb /minecraft-client/src | |
| download | azalea-drasl-5029a09963b5753c1f9b7f777f28e1c0951343e7.tar.xz | |
Initial commit
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); + } +} |
