Add MVP version

This commit is contained in:
KMKoushik
2024-03-24 17:43:56 +11:00
parent 9032efa9b2
commit bbc64b5392
49 changed files with 3249 additions and 298 deletions

View File

@@ -0,0 +1,6 @@
import { setupAws } from "~/server/aws/setup";
export async function GET() {
await setupAws();
return Response.json({ data: "Healthy" });
}