8 lines
283 B
JavaScript
8 lines
283 B
JavaScript
const client = require("..");
|
|
const starboardclient = require("../client/StarboardClient");
|
|
client.on("messageReactionAdd", async reaction => {
|
|
starboardclient.listener(reaction);
|
|
});
|
|
client.on("messageReactionRemove", async reaction => {
|
|
starboardclient.listener(reaction);
|
|
});
|