tristanable/source/tristanable/package.d
Tristan B. Velloza Kildaire c6568a566c Package
- Removed completed TODO
2023-04-05 08:45:48 +02:00

26 lines
527 B
D

/**
* Tristanable network message queuing framework
*/
module tristanable;
/**
* Interface which manages a provided socket
* and enqueuing and dequeuing of queues
*/
public import tristanable.manager;
/**
* A queue of queue items all of the same tag
*/
public import tristanable.queue : Queue;
/**
* Error handling type definitions
*/
public import tristanable.exceptions : TristanableException, ErrorType;
/**
* Encoding/decoding of the tristanable format
*/
public import tristanable.encoding : TaggedMessage;