watson
guilevi 2021-04-06 02:56:23 +02:00
parent 110b78c762
commit e779c76a6e
4 changed files with 3 additions and 3 deletions

BIN
.DS_Store vendored

Binary file not shown.

BIN
modules/.DS_Store vendored

Binary file not shown.

BIN
tts/.DS_Store vendored

Binary file not shown.

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);
} }
}; };