galactic-bot/structure/storage/tables/mongodb/Infractions.js

17 lines
306 B
JavaScript
Raw Normal View History

const { MongodbTable } = require('../../interfaces/');
class InfractionsTable extends MongodbTable {
constructor(client, provider) {
super(client, provider, {
name: 'infractions'
});
this.provider = provider;
}
}
module.exports = InfractionsTable;