blob: 199c35902ca76ed890091a95eeb3d40f943d84c8 [file]
import {Controller, Get} from '@nestjs/common';
@Controller()
export class AppController {
@Get()
getGreeting(): string {
return 'Hello world!';
}
}