v0.1.14 - 서버 삭제 동기화 추가

This commit is contained in:
2026-04-21 18:20:33 +09:00
parent a53ef4cc6f
commit 20564ba34b
6 changed files with 55 additions and 6 deletions

View File

@@ -49,3 +49,10 @@ export async function savePlannerEntry(token, entryDate, payload) {
},
})
}
export async function deletePlannerEntry(token, entryDate) {
return request(`/api/planner/${entryDate}`, {
method: 'DELETE',
token,
})
}