Set Kink rate limits, added method parameter for arbitrary requests.

This commit is contained in:
DebaucheryLibrarian
2022-04-10 21:51:22 +02:00
parent 8439631e2d
commit b9556c9c86
6 changed files with 51 additions and 2 deletions

View File

@@ -152,7 +152,7 @@ async function init() {
}
if (argv.request) {
const res = await http.get(argv.request);
const res = await http[argv.requestMethod](argv.request);
console.log(res.status, res.body);
}