Feat: started admin panel

This commit is contained in:
2025-01-24 15:22:40 +03:00
parent d97cafa9ec
commit 2a9a49c5ec
11 changed files with 135 additions and 2 deletions

3
src/app/api/route.ts Normal file
View File

@@ -0,0 +1,3 @@
export async function GET() {
return Response.json({ test: 1 });
}