export interface ApiResponse<T> {
    success: true;
    data: T;
}
export interface ApiErrorResponse {
    success: false;
    error: {
        statusCode: number;
        message: string;
        path: string;
        timestamp: string;
    };
}
