for first push

This commit is contained in:
2026-04-29 16:29:03 -04:00
parent 218de3b03b
commit 509259bcf2
19 changed files with 1911 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ import Fastify from "fastify";
import cors from "@fastify/cors";
import helmet from "@fastify/helmet";
import sensible from "@fastify/sensible";
import { darkwatchRoutes } from "./routes";
import { darkwatchRoutes, voiceprintRoutes } from "./routes";
const app = Fastify({
logger: {
@@ -16,6 +16,7 @@ async function bootstrap() {
await app.register(sensible);
await app.register(darkwatchRoutes);
await app.register(voiceprintRoutes);
app.get("/health", async () => ({ status: "ok", timestamp: new Date().toISOString() }));