add alert routes

This commit is contained in:
2025-06-21 12:29:53 +05:30
parent c6bb01d8e4
commit e821c8d11d
12 changed files with 336 additions and 6 deletions

View File

@@ -23,6 +23,7 @@ import { viewSchemas } from "./view/view.schema";
import { processedSchemas } from "./processed/processed.schema";
import { cTaskSchemas } from "./ctask/ctask.schema";
import { paymentSchemas } from "./payments/payment.schema";
import { alertSchemas } from "./alert/alert.schema";
const app = fastify({ logger: true, trustProxy: true });
@@ -59,6 +60,7 @@ for (const schema of [
...viewSchemas,
...processedSchemas,
...paymentSchemas,
...alertSchemas,
]) {
app.addSchema(schema);
}