File size: 488 Bytes
4327358
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { Controller, Get } from '@nestjs/common';
import { ApiOperation, ApiSecurity, ApiTags } from '@nestjs/swagger';
import { PingResponse } from '@waha/structures/ping.dto';

@ApiSecurity('api_key')
@Controller('ping')
@ApiTags('🔍 Observability')
export class PingController {
  @Get()
  @ApiOperation({
    summary: 'Ping the server',
    description: 'Check if the server is alive and responding to requests.',
  })
  ping(): PingResponse {
    return { message: 'pong' };
  }
}