From bc5f0a7085099e84875006aaf868e1c642498a29 Mon Sep 17 00:00:00 2001 From: Alan Bridgeman Date: Wed, 30 Apr 2025 17:21:20 -0500 Subject: [PATCH] Forgot to export one of the classes --- src/controllers/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/controllers/index.ts b/src/controllers/index.ts index a96f133..ee5ea83 100644 --- a/src/controllers/index.ts +++ b/src/controllers/index.ts @@ -1,3 +1,4 @@ import { BaseController } from './BaseController'; +import { ErrorController } from './ErrorController'; -export { BaseController }; \ No newline at end of file +export { BaseController, ErrorController }; \ No newline at end of file