mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
11 lines
220 B
TypeScript
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;
|
|
}
|