This commit is contained in:
Erik 2020-08-08 22:01:11 +03:00
parent 73e32f030d
commit 25c5e2d1cb

View File

@ -0,0 +1,17 @@
const { MariadbTable } = require('../../interfaces/');
class InfractionsTable extends MariadbTable {
constructor(client, provider) {
super(client, provider, {
name: 'activity'
});
this.provider = provider;
}
}
module.exports = InfractionsTable;