Initial Commit

This commit is contained in:
Anders Böttcher
2026-05-11 23:39:16 +02:00
parent 9dde8d8804
commit 50566f2a22
38 changed files with 5840 additions and 1015 deletions
+7
View File
@@ -0,0 +1,7 @@
import { NextResponse } from 'next/server'
import { readMeta } from '@/lib/store'
export async function GET() {
const records = await readMeta()
return NextResponse.json(records)
}