galactic-bot/Logger.js
2020-04-09 08:30:52 -06:00

13 lines
156 B
JavaScript

const Winston = require('winston');
class Logger {
constructor(manager) {
this.manager = manager;
}
}
module.exports = Logger;