add notes routes

This commit is contained in:
2025-02-07 18:39:55 +05:30
parent a130d0cb73
commit d043b5aed7
8 changed files with 312 additions and 0 deletions

View File

@@ -15,6 +15,7 @@ import { authRoutes } from "./auth/auth.route";
import { rtsSchemas } from "./rts/rts.schema";
import { taskSchemas } from "./task/task.schema";
import { notificationSchemas } from "./notification/notification.schema";
import { noteSchemas } from "./note/note.schema";
const app = fastify({ logger: true });
@@ -43,6 +44,7 @@ for (const schema of [
...rtsSchemas,
...taskSchemas,
...notificationSchemas,
...noteSchemas,
]) {
app.addSchema(schema);
}