From 9bdb98423dd4a04960890533783ed241d455eb58 Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Wed, 12 Jan 2022 17:28:41 +0200 Subject: [PATCH] Included exceptions module in package declaration --- source/tasky/package.d | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/tasky/package.d b/source/tasky/package.d index 05da23b..5de4fa9 100644 --- a/source/tasky/package.d +++ b/source/tasky/package.d @@ -1,3 +1,5 @@ module tasky; -public import tasky.engine; \ No newline at end of file +public import tasky.engine; +public import tasky.jobs; +public import tasky.exceptions;