Skip to content

Commit

Permalink
'update'
Browse files Browse the repository at this point in the history
  • Loading branch information
youfeed committed Dec 6, 2023
1 parent 16b21c6 commit a1bfdeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/drive/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export async function onRequest(context) {
const params = context.params
const request = context.request
const method = request.method
const body = request.body.length
const body = await request.body
return new Response(JSON.stringify([body,params,method,request], null, 2),{headers:{'content-type':'application/json;charset=UTF-8'}});
// {request,env}
const secret = env.secret;
Expand Down

0 comments on commit a1bfdeb

Please sign in to comment.