stringlist-api
v0.0.2
Published
``` const StringListAPI = require('stringlist-api'); let api = new StringListAPI('API Key');
Downloads
2
Readme
const StringListAPI = require('stringlist-api');
let api = new StringListAPI('API Key');
client.on('ready', ()=> {
api.postServers(client.user.id, client.guilds.size);
api.postUsers(client.user.id, client.users.size);
setInterval(function() {
api.postServers(client.user.id, client.guilds.size);
api.postUsers(client.user.id, client.users.size);
}, 900000);
});