/
githubmirror
/
nest
Обзор
Документация
Войти
/
githubmirror
/
nest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
sample/25-dynamic-modules/src/app.service.ts
15 строк
346 B
Kamil Myśliwiec
sample(): add queues and schedule samples
15 дек 2019, 13:14
Не верифицирован
15 дек 2019, 13:14
e3b7075
Код
Авторство
О чём код?
import { Injectable } from '@nestjs/common'; import { ConfigService } from './config/config.service'; @Injectable() export class AppService { private helloMessage: string; constructor(configService: ConfigService) { this.helloMessage = configService.get('HELLO_MESSAGE'); } getHello(): string { return this.helloMessage; } }