const { Feature } = require("afkhandler");
export default new Feature({
run({ client, gadget }) {
// run can be execute, callback, fire or emit
console.log("Hello World!");
},
});
import { Feature } from "afkhandler";
export default new Feature({
run({ client, gadget }) {
// run can be execute, callback, fire or emit
console.log("Hello World!");
},
});