import { Injectable } from '@nestjs/common'; import { Config } from './my-lib.module'; @Injectable() export class MyLibService { private readonly config: Config; constructor(config: Config) { this.config = config; } greet() { console.log(`Hello ${this.config.name}`); } }