This commit is contained in:
2021-04-06 02:56:23 +02:00
parent 110b78c762
commit e779c76a6e
4 changed files with 3 additions and 3 deletions
Vendored
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
+3 -3
View File
@@ -17,10 +17,10 @@ module.exports= class extends BaseEngine {
'Content-Type': 'application/json', 'Content-Type': 'application/json',
'Authorization': authorization 'Authorization': authorization
}, },
body: { body: JSON.stringify({
text: text text: text
} })
}; };
return fetch(url); return fetch(url,opts);
} }
}; };