Initial commit

This commit is contained in:
2025-11-01 12:16:01 -07:00
commit 8383b6f63e
15 changed files with 1194 additions and 0 deletions

6
src/lib/util.ts Normal file
View File

@@ -0,0 +1,6 @@
export function jsonResponse(data: any, status = 200) {
return new Response(JSON.stringify(data, null, 2), {
status,
headers: { "Content-Type": "application/json" }
})
}