friends-best/server/index.ts
Louis Hollingworth f9e7e5480c
Now has all of the functions as the Astro site.
Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
2023-05-09 19:55:32 +01:00

8 lines
208 B
TypeScript

const runtimeConfig = useRuntimeConfig();
import { PrismaClient } from '@prisma/client';
import { Nitro } from 'nitropack';
const prisma = new PrismaClient();
export default async (_nitroApp: Nitro) => {
};