WIP clientbound

This commit is contained in:
Aram 🍐 2021-08-03 22:21:46 -04:00
parent dab761acb7
commit 50b2d3190e
2 changed files with 40 additions and 0 deletions

View file

@ -1,3 +1,8 @@
/// Client-bound protocol implementation.
///
/// "Client-bound" implies commands RECEIVED and DECODED by the client. The server implementation
/// must use the same messages to ENCODE and SEND.
pub mod client;
/// Server-bound protocol implementation.
///
/// "Server-bound" implies commands RECEIVED and DECODED by the server. The client implementation