2 files changed, 2 insertions, 2 deletions
diff --git a/src/api/routes/auth/registerRoute.js b/src/api/routes/auth/registerRoute.js
index 8ad4f07..f2befd8 100644
--- a/src/api/routes/auth/registerRoute.js
+++ b/src/api/routes/auth/registerRoute.js
@@ -1,4 +1,4 @@
-import { User } from '#db/index.js';
+import { DbUser } from '#db/index.js';
export const registerRoute = {
route: '/auth/register',
diff --git a/src/api/routes/statusRoute.js b/src/api/routes/statusRoute.js
index 41208a4..5c3231b 100644
--- a/src/api/routes/statusRoute.js
+++ b/src/api/routes/statusRoute.js
@@ -1,4 +1,4 @@
-import { User } from '#db/schemas/user.js';
+import { DbUser } from '#db/index.js';
export const statusRoute = {
route: '/status',
|