v1/services/Service.js

10 lines
175 B
JavaScript

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