const client = require("authed.io");
const authed = new authed({
id: "",
token: "",
secret: "",
});
authed.login("[email protected]", "example", function(response) {
console.log(response);
});
authed.register("[email protected]", "example", "license", function(response) {
console.log(response);
});
authed.generateLicence("authed.io", 1, 0, 50, function(response) {
console.log(response);
});