8 lines
No EOL
150 B
JavaScript
Executable file
8 lines
No EOL
150 B
JavaScript
Executable file
module.exports={
|
|
load:()=>{
|
|
console.log("Loaded on global")
|
|
},
|
|
loadBot:(b)=>{
|
|
console.log(`Loaded on bot ${b.id}`)
|
|
}
|
|
} |