mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-25 12:19:10 +00:00
10 lines
174 B
JavaScript
10 lines
174 B
JavaScript
const Logger = require('../logger')
|
|
|
|
class Service {
|
|
constructor(ctx) {
|
|
this.ctx = ctx
|
|
this.log = new Logger(this.constructor.name)
|
|
}
|
|
}
|
|
|
|
module.exports = Service
|