galactic-bot/storage/StorageManager.js

17 lines
216 B
JavaScript
Raw Normal View History

2020-04-08 16:27:34 +02:00
const { Collection } = require('../util/');
class StorageManager {
constructor(manager) {
this.providers = new Collection();
}
2020-04-09 16:30:52 +02:00
async initialize() {
}
2020-04-08 16:27:34 +02:00
}
module.exports = StorageManager;