chore: commit all changes

This commit is contained in:
2026-02-26 13:26:18 -05:00
parent fd8edb1f21
commit 74fee52c4e
26 changed files with 4705 additions and 1108 deletions

8
instrumentation.ts Normal file
View File

@@ -0,0 +1,8 @@
export async function register() {
if (process.env.NEXT_RUNTIME === 'edge') {
return;
}
const { getWorld } = await import('workflow/runtime');
await getWorld().start?.();
}