forked from Galactic/galactic-bot
17 lines
306 B
JavaScript
17 lines
306 B
JavaScript
const { MongodbTable } = require('../../interfaces/');
|
|
|
|
class InfractionsTable extends MongodbTable {
|
|
|
|
constructor(client, provider) {
|
|
|
|
super(client, provider, {
|
|
name: 'infractions'
|
|
});
|
|
|
|
this.provider = provider;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = InfractionsTable; |