UNPKG

@triviality/core

Version:
12 lines (8 loc) 238 B
import { LoggerInterface } from '../features/LoggerInterface'; export class HalloService { constructor(private logger: LoggerInterface, private name: string) { } public speak() { this.logger.info(`Hallo ${this.name}`); } }