- Documented the module `libsnooze` and the public imports
This commit is contained in:
Tristan B. Velloza Kildaire 2023-06-10 14:32:18 +02:00
parent caffd5f041
commit 9add909256
1 changed files with 10 additions and 0 deletions

View File

@ -1,4 +1,14 @@
/**
* A wait/notify mechanism for D
*/
module libsnooze;
/**
* The `Event` type and facilities
*/
public import libsnooze.event : Event;
/**
* Exception types
*/
public import libsnooze.exceptions;