import { pb } from '@/lib/pb'; import { COL_STUDENTS, COL_USER_METAS } from '@/constants'; export async function deleteStudent(id: string): Promise { return pb.collection(COL_USER_METAS).delete(id); }