bformat/source/bformat/package.d

22 lines
439 B
D
Raw Permalink Normal View History

/**
* bformat encoder/decoder
*/
2023-03-25 19:59:38 +01:00
module bformat;
/**
* Provides a client which consumes a stream
* which can encode and decode messages to
* and from it
*/
public import bformat.client : BClient;
/**
* 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;