feat: ship self-hosted KOC LOOP workflows
This commit is contained in:
11
lib/background.ts
Normal file
11
lib/background.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
export function runInBackground(
|
||||
operation: Promise<unknown>,
|
||||
label: string,
|
||||
) {
|
||||
void operation.catch((error) => {
|
||||
console.error(
|
||||
`[KOC LOOP] ${label} failed`,
|
||||
error instanceof Error ? error.message : error,
|
||||
);
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user