From e9a58957b80ab9bf425505859f1de77295044d20 Mon Sep 17 00:00:00 2001 From: Hanen Alrwasheda <alrwasheda@mi.fu-berlin.de> Date: Mon, 10 Jan 2022 14:36:31 +0100 Subject: [PATCH] small correction exporting boatTypeControllers --- server/src/controllers/boatTypeControllers.controllers.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/server/src/controllers/boatTypeControllers.controllers.ts b/server/src/controllers/boatTypeControllers.controllers.ts index 8eedb09..461a82e 100644 --- a/server/src/controllers/boatTypeControllers.controllers.ts +++ b/server/src/controllers/boatTypeControllers.controllers.ts @@ -15,4 +15,10 @@ const showAllBoatTypes = async (req: Request, res: Response) => { console.error("server error: ", error.message); return res.status(500).json({ success: false, error: "serverError" }); } - }; \ No newline at end of file + }; + + const boatTypeControllers = { + showAllBoatTypes, + } + + export default boatTypeControllers \ No newline at end of file -- GitLab