- Added module-level documentation

Exceptions

- Added module-level documentation

Queue

- Added module-level documentation

Package (`tristanable.manager`)

- Added module-level documentation
This commit is contained in:
Tristan B. Velloza Kildaire 2023-04-05 08:47:51 +02:00
parent 41ebb30754
commit cf62054eb8
4 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,6 @@
/**
* Encoding/decoding of the tristanable format
*/
module tristanable.encoding;
import std.conv : to;

View File

@ -1,3 +1,6 @@
/**
* Error handling type definitions
*/
module tristanable.exceptions;
public enum ErrorType

View File

@ -1,3 +1,7 @@
/**
* Interface which manages a provided socket
* and enqueuing and dequeuing of queues
*/
module tristanable.manager;
public import tristanable.manager.manager : Manager;

View File

@ -1,3 +1,6 @@
/**
* A queue of queue items all of the same tag
*/
module tristanable.queue;
// TODO: Examine the below import which seemingly fixes stuff for libsnooze