auths
objectreturn
or this.key = 'value'
, pass input data to your code viaparams
, and maintain state across executions with$checkpoint.async
(event, steps) => {
}
this.path = (new URL(event.url)).pathname
if (this.path === "/warm") {
$respond({
status: 200,
body: {
warmed: true,
}
})
$end("Warming request, ending early")
}
auths
objectreturn
or this.key = 'value'
, pass input data to your code viaparams
, and maintain state across executions with$checkpoint.async
(event, steps) => {
}
$respond({
status: 200,
body: {
hello: "world"
}
})