/
githubmirror
/
novu
Обзор
Документация
Войти
/
githubmirror
/
novu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
next
apps/webhook/src/app.controller.ts
12 строк
274 B
David Söderberg
feat: create new webhook service
21 сен 2022, 11:59
21 сен 2022, 11:59
1025ad6
Код
Авторство
О чём код?
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(); } }