spacebotsapi
v0.1.1
Published
api for space bots
Downloads
23
Readme
const SpaceBotsAPI = require('spacebotsapi');
let api = new SpaceBotsAPI('API Key');
client.on('ready', ()=> {
api.postServers(client.user.id, client.guilds.size);
setInterval(function() {
api.postServers(client.user.id, client.guilds.size);
}, 900000);
});