export interface EchoArguments {
    message: string;
}
export interface EchoResponse {
    message: string;
    timestamp: string;
}
export interface PingResponse {
    pong: true;
    timestamp: string;
}
