Package (bformat)

- Imported `decodeMessage(byte[])` and `encodeMessage(byte[])` from the `bformat.marshall` module
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-25 21:51:46 +02:00
parent bcd29bac3d
commit 7b3908b053
1 changed files with 12 additions and 1 deletions

View File

@ -15,4 +15,15 @@ public import bformat.sockets : sendMessage;
* and finally placing the resulting payload in
* the provided array
*/
public import bformat.sockets : receiveMessage;
public import bformat.sockets : receiveMessage;
/**
* Encodes the provided message into the bformat format
*/
public import bformat.marshall : encodeBformat;
/**
* Decodes the provided bformat message into the
* message itself
*/
public import bformat.marshall : decodeMessage;