mirror of
https://github.com/MrSedan/neuro-reply-website.git
synced 2026-01-15 13:09:43 +03:00
13 lines
294 B
TypeScript
13 lines
294 B
TypeScript
import { Controller, Get } from '@nestjs/common';
|
|
import { ApiOperation, ApiTags } from '@nestjs/swagger';
|
|
|
|
@ApiTags('App')
|
|
@Controller()
|
|
export class AppController {
|
|
@ApiOperation({ description: 'check site availability' })
|
|
@Get('ping')
|
|
pingpong() {
|
|
return 'pong';
|
|
}
|
|
}
|