/
githubmirror
/
nest
Обзор
Документация
Войти
/
githubmirror
/
nest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
integration/versioning/src/no-versioning.controller.ts
9 строк
172 B
Micael Levi (lab)
test(): add tests for global version with URI Versioning
26 сен 2021, 22:33
26 сен 2021, 22:33
9d0dcc6
Код
Авторство
О чём код?
import { Controller, Get } from '@nestjs/common'; @Controller('foo') export class NoVersioningController { @Get('/bar') helloFoo() { return 'Hello FooBar!'; } }