/
githubmirror
/
nest
Обзор
Документация
Войти
/
githubmirror
/
nest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
sample/25-dynamic-modules/src/app.controller.ts
12 строк
274 B
John Biundo
docs(samples) add 25-dynamic-modules
10 сен 2019, 01:24
10 сен 2019, 01:24
e82c8a7
Код
Авторство
О чём код?
import { Controller, Get } from '@nestjs/common'; import { AppService } from './app.service'; @Controller() export class AppController { constructor(private readonly appService: AppService) {} @Get() getHello(): string { return this.appService.getHello(); } }