mirror of
https://github.com/langgenius/dify.git
synced 2026-07-21 18:58:35 +08:00
19 lines
401 B
TypeScript
19 lines
401 B
TypeScript
export type CleanupTask = {
|
|
label: string
|
|
run: () => Promise<void> | void
|
|
}
|
|
|
|
export async function runCleanupTasks(tasks: CleanupTask[]): Promise<string[]> {
|
|
const errors: string[] = []
|
|
|
|
for (const task of tasks) {
|
|
try {
|
|
await task.run()
|
|
} catch (error) {
|
|
errors.push(`${task.label}: ${error instanceof Error ? error.message : String(error)}`)
|
|
}
|
|
}
|
|
|
|
return errors
|
|
}
|