add rts routes

This commit is contained in:
2025-01-21 11:54:09 +05:30
parent 7e3218f84e
commit a54541518c
15 changed files with 653 additions and 28 deletions

View File

@@ -12,6 +12,7 @@ import { permitSchemas } from "./permit/permit.schema";
import { fileSchemas } from "./file/file.schema";
import { oauth } from "./oauth";
import { authRoutes } from "./auth/auth.route";
import { rtsSchemas } from "./rts/rts.schema";
const app = fastify({ logger: true });
@@ -37,6 +38,7 @@ for (const schema of [
...tokenSchemas,
...permitSchemas,
...fileSchemas,
...rtsSchemas,
]) {
app.addSchema(schema);
}