v1/Server/services/Service.js
2019-11-19 23:03:04 -05:00

10 lines
178 B
JavaScript

const Logger = require('../logger');
class Service {
constructor(ctx) {
this.ctx = ctx;
this.log = new Logger(this.constructor.name);
}
}
module.exports = Service;