src/app/app.controller.ts
Methods |
getHello |
getHello()
|
Decorators :
@Get()
|
Defined in src/app/app.controller.ts:8
|
Returns :
string
|
import { Controller, Get } from '@nestjs/common';
import { ApiExcludeController } from '@nestjs/swagger';
@ApiExcludeController()
@Controller()
export class AppController {
@Get()
getHello(): string {
return 'EUDIPLO is up and running, more information at <a href="https://cre8.github.io/eudiplo/">https://cre8.github.io/eudiplo/</a>';
}
}