(uid: string)
| 30 | } |
| 31 | |
| 32 | export async function deleteAll(uid: string): Promise<DeleteResult> { |
| 33 | return await getResultCollection().deleteMany({ uid }); |
| 34 | } |
| 35 | |
| 36 | export async function updateTags( |
| 37 | uid: string, |
nothing calls this directly
no test coverage detected