first sync

This commit is contained in:
41666 2017-12-04 21:25:13 -06:00
parent 5d6f382c8a
commit a4acc441ea
52 changed files with 28315 additions and 0 deletions

View file

@ -0,0 +1,10 @@
const Logger = require('../logger')
class Service {
constructor (ctx) {
this.ctx = ctx
this.log = new Logger(this.constructor.name)
}
}
module.exports = Service