From 01a5d779c835e530948449c1ebaa05b8c7f066d5 Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Fri, 3 Mar 2023 17:49:32 +0200 Subject: [PATCH] Package - Added a title to the documentation to better describe what this library does Dub - Updated package description - Added project website link --- dub.json | 3 ++- source/tristanable/package.d | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/dub.json b/dub.json index f7c7cc6..c4e6bf8 100644 --- a/dub.json +++ b/dub.json @@ -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" diff --git a/source/tristanable/package.d b/source/tristanable/package.d index d45165d..bdbabde 100644 --- a/source/tristanable/package.d +++ b/source/tristanable/package.d @@ -1,4 +1,8 @@ +/** + * Tristanable network message queuing framework + */ module tristanable; + public import tristanable.manager : Manager; public import tristanable.queue : Queue, QueueItem; \ No newline at end of file