galactic-bot/structure/storage/interfaces/MariadbTable.js

14 lines
215 B
JavaScript

class MariadbTable {
constructor(client, provider, opts = {}) {
this.client = client;
this.provider = provider;
this.name = opts.name;
}
}
module.exports = MariadbTable;