/
githubmirror
/
novu
Обзор
Документация
Войти
/
githubmirror
/
novu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
next
apps/ws/src/app.controller.ts
12 строк
274 B
Dima Grossman
Notification Infrastructure seed release (#73)
07 ноя 2021, 23:14
07 ноя 2021, 23:14
bf559f6
Код
Авторство
О чём код?
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(); } }