forked from Galactic/galactic-bot
18 lines
372 B
JavaScript
18 lines
372 B
JavaScript
class Provider {
|
|
|
|
constructor(manager, config) {
|
|
|
|
if(!config) throw new Error('No config file provided!');
|
|
if(config && (!config.database || !config.url)) throw new Error('Invalid config file provided!');
|
|
|
|
this.manager = manager;
|
|
this.config = config;
|
|
this.db;
|
|
this.loaded = false;
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = Provider; |