update and bulid ok,

This commit is contained in:
louiscklaw
2025-04-20 03:23:04 +08:00
parent 0f90e0ae72
commit 790ec73e50
5 changed files with 144 additions and 4 deletions

View File

@@ -0,0 +1,8 @@
import { COL_QUIZ_LISTENINGS } from '@/constants';
import type { RecordModel } from 'pocketbase';
import { pb } from '@/lib/pb';
export default function deleteQuizListening(id: string): Promise<boolean> {
return pb.collection(COL_QUIZ_LISTENINGS).delete(id);
}