forked from Galactic/galactic-bot
13 lines
183 B
JavaScript
13 lines
183 B
JavaScript
const { Collection } = require('../util/');
|
|
|
|
class StorageManager {
|
|
|
|
constructor(manager) {
|
|
|
|
this.providers = new Collection();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = StorageManager; |