app.controller.ts 156 B

123456789
  1. import { Controller, Get } from '@nestjs/common';
  2. @Controller('ping')
  3. export class AppController {
  4. @Get()
  5. ping(): string {
  6. return 'Success';
  7. }
  8. }