7 lines
258 B
JavaScript
7 lines
258 B
JavaScript
const log = require("../util/log.js").execute;
|
|
|
|
module.exports.execute = function (client) {
|
|
console.log(`${client.user.tag} is online.`);
|
|
const channel = client.channels.cache.get("1148814162273763418");
|
|
channel.send("pepperbot restart complete");
|
|
};
|