Emma 56f0442d33 game systems: game system pages, game system create
components: moved DevTool to client component
2024-03-19 11:20:15 -06:00

8 lines
169 B
TypeScript

"use server";
import { prisma } from "@/prisma/prismaClient";
// DEV TOOL ONLY
export async function deleteAllGameSystems() {
await prisma.gameSystem.deleteMany();
}