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