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 45bd18b commit 16b21c6
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.text()
const body = request.body.length
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 16b21c6

Please sign in to comment.