This commit is contained in:
Flummi
2019-08-19 14:17:35 +00:00
parent 8233560a3f
commit d6a737931a
7 changed files with 53 additions and 31 deletions

10
src/inc/events/error.mjs Normal file
View File

@@ -0,0 +1,10 @@
export default async bot => {
return [{
name: "error",
listener: "error",
f: e => {
console.log(e);
}
}];
};