mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-25 12:19:10 +00:00
12 lines
263 B
JavaScript
12 lines
263 B
JavaScript
// @flow
|
|
import { Logger } from '../logger'
|
|
import { type AppContext } from '../Roleypoly'
|
|
|
|
export default class Service {
|
|
ctx: AppContext
|
|
log: Logger
|
|
constructor (ctx: AppContext) {
|
|
this.ctx = ctx
|
|
this.log = new Logger(this.constructor.name)
|
|
}
|
|
}
|