mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -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
|
||||
} = context;
|
||||
|
||||
return new Response(JSON.stringify({
|
||||
message: 'Hello, worker!',
|
||||
context,
|
||||
})
|
||||
return new Response(
|
||||
JSON.stringify({
|
||||
message: 'Hello, worker!',
|
||||
context,
|
||||
})
|
||||
)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue