obelisk 0.37.2

Deterministic workflow engine
1
2
3
4
5
6
7
8
export default function handle(request) {
    console.info(request);
    const execId = obelisk.currentExecutionId();
    return new Response("Hello from JS webhook!", {
        status: 200,
        headers: { "content-type": "text/plain", "x-execution-id": execId },
    });
}