From c21ab033eeb06e9f11e3b8583f0bce99c5fd3d12 Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Sun, 24 Sep 2023 16:07:29 +1300 Subject: [PATCH] Add module statement to esv.d --- esv.d | 2 ++ 1 file changed, 2 insertions(+) diff --git a/esv.d b/esv.d index 56686d1..9026d83 100644 --- a/esv.d +++ b/esv.d @@ -18,6 +18,8 @@ * along with esv. If not, see . */ +module esv; + import std.conv : to, ConvException; import std.exception : enforce; import std.file : exists, mkdirRecurse, write, FileException;