add payments routes

This commit is contained in:
2025-06-09 16:45:05 +05:30
parent bec293193f
commit 6dea12bb45
8 changed files with 225 additions and 1 deletions

View File

@@ -22,6 +22,7 @@ import { mailSchemas } from "./mailProxy/mailProxy.schema";
import { viewSchemas } from "./view/view.schema";
import { processedSchemas } from "./processed/processed.schema";
import { cTaskSchemas } from "./ctask/ctask.schema";
import { paymentSchemas } from "./payments/payment.schema";
const app = fastify({ logger: true, trustProxy: true });
@@ -57,6 +58,7 @@ for (const schema of [
...mailSchemas,
...viewSchemas,
...processedSchemas,
...paymentSchemas,
]) {
app.addSchema(schema);
}