- Added a title to the documentation to better describe what this library does

Dub

- Updated package description
- Added project website link
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-03 17:49:32 +02:00
parent f8aa3b92cf
commit 01a5d779c8
2 changed files with 6 additions and 1 deletions

View File

@ -2,11 +2,12 @@
"authors": [
"Tristan B. Velloza Kildaire"
],
"homepage": "https://deavmi.assigned.network/projects/tristanable",
"copyright": "Copyright © 2023, Tristan B. Kildaire",
"dependencies": {
"libsnooze": "0.2.9"
},
"description": "Tag-based asynchronous messaging framework",
"description": "Tristanable network message queuing framework",
"license": "LGPL-3.0",
"name": "tristanable",
"targetType": "library"

View File

@ -1,4 +1,8 @@
/**
* Tristanable network message queuing framework
*/
module tristanable;
public import tristanable.manager : Manager;
public import tristanable.queue : Queue, QueueItem;