src/app.controller.ts
api
Methods |
root |
root()
|
Decorators :
@Get()
|
Defined in src/app.controller.ts:6
|
Returns :
string
|
import { Get, Controller } from '@nestjs/common';
@Controller('api')
export class AppController {
@Get()
root(): string {
return 'Hello World!';
}
}