Initial WinningHunter MVP

This commit is contained in:
2026-07-07 20:40:43 +03:00
commit 8dd43c57ca
57 changed files with 5295 additions and 0 deletions
@@ -0,0 +1,7 @@
import { NextResponse } from "next/server";
import { requireAdmin } from "@/lib/auth/current-user";
export async function POST() {
await requireAdmin();
return NextResponse.json({ ok: true, message: "Demo seed komut satırından çalışır: npm run db:seed" });
}