galactic-bot/Logger.js

13 lines
156 B
JavaScript
Raw Normal View History

2020-04-09 16:30:52 +02:00
const Winston = require('winston');
2020-04-08 16:27:34 +02:00
2020-04-09 16:30:52 +02:00
class Logger {
2020-04-08 16:27:34 +02:00
2020-04-09 16:30:52 +02:00
constructor(manager) {
this.manager = manager;
}
2020-04-08 16:27:34 +02:00
}
module.exports = Logger;