export type Result = {
    ok: true;
    data: any;
    ip: string;
} | {
    ip: string;
    ok: false;
    error: string;
};
