From e6d9d1018228ea1f834fe53cd4e8a1417123266e Mon Sep 17 00:00:00 2001 From: Carlo Morgenstern Date: Sun, 24 Oct 2021 16:04:44 +0200 Subject: [PATCH] Added CardCreator init on server startup --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index 2366d64..9261107 100644 --- a/index.js +++ b/index.js @@ -145,5 +145,6 @@ app.use((error, req, res, next) => { }); app.listen(port, () => { + creator.ensureInit(); console.log(`Listening at http://localhost:${port}`); });