discord-user-bots
Version:
A library that allows you to use the full potential of Discords API to create and operate powerful user bots
21 lines (18 loc) • 379 B
JavaScript
/**
*
* ## OVERVIEW
*
* Defines a captcha struct.
*
*/
class Captcha {
constructor(service, siteKey, siteURL, cookies, userAgent, error) {
this.service = service;
this.siteKey = siteKey;
this.siteURL = siteURL;
this.cookies = cookies;
this.userAgent = userAgent;
this.error = error;
}
}
module.exports = Captcha;