forked from Galactic/galactic-bot
14 lines
215 B
JavaScript
14 lines
215 B
JavaScript
class MariadbTable {
|
|
|
|
constructor(client, provider, opts = {}) {
|
|
|
|
this.client = client;
|
|
this.provider = provider;
|
|
|
|
this.name = opts.name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = MariadbTable; |