Files
immich/server/libs/domain/src/server-info/response-dto/server-ping-response.dto.ts
2023-03-21 21:49:19 -05:00

11 lines
220 B
TypeScript

import { ApiResponseProperty } from '@nestjs/swagger';
export class ServerPingResponse {
constructor(res: string) {
this.res = res;
}
@ApiResponseProperty({ type: String, example: 'pong' })
res!: string;
}