Split queries into prisma and sql.

This commit is contained in:
Mike Cao
2025-09-29 16:55:07 -07:00
parent 1a66e3df73
commit b9fbbc6453
69 changed files with 117 additions and 115 deletions

View File

@@ -2,7 +2,7 @@ import { z } from 'zod';
import { json, badRequest, notFound } from '@/lib/response';
import { parseRequest } from '@/lib/request';
import { ROLES } from '@/lib/constants';
import { createTeamUser, findTeam, getTeamUser } from '@/queries';
import { createTeamUser, findTeam, getTeamUser } from '@/queries/prisma';
export async function POST(request: Request) {
const schema = z.object({