Spaces:
Runtime error
Runtime error
File size: 288 Bytes
faca43f |
1 2 3 4 5 6 7 8 |
import { collections } from "$lib/server/database";
import { hashConv } from "$lib/utils/hashConv.js";
import { error } from "@sveltejs/kit";
export async function GET({ params, locals }) {
return new Response(JSON.stringify(""), { headers: { "Content-Type": "application/json" } });
}
|