mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
Fix missing syntax error
This commit is contained in:
parent
2ab70f2eb4
commit
0da313b6f0
1 changed files with 6 additions and 4 deletions
|
|
@ -9,8 +9,10 @@ export async function onRequest(context) {
|
||||||
data, // arbitrary space for passing data between middlewares
|
data, // arbitrary space for passing data between middlewares
|
||||||
} = context;
|
} = context;
|
||||||
|
|
||||||
return new Response(JSON.stringify({
|
return new Response(
|
||||||
|
JSON.stringify({
|
||||||
message: 'Hello, worker!',
|
message: 'Hello, worker!',
|
||||||
context,
|
context,
|
||||||
})
|
})
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue