import { TServerResponse } from "~/lib/response"; export function success(_path: RequestInfo | URL, _options?: RequestInit) { const json = () => ( new Promise((resolve) => ( resolve({ YourIPAddress: "127.0.0.1", YourISP: "FooBar Ltd", YourCity: "Foo City", YourCountry: "United States of FooBar", YourCountryCode: "BR", YourTorExit: false }) ) )); return new Promise((resolve) => { resolve({ status: 200, json }); }); } export function error(_path: RequestInfo | URL, _options?: RequestInit) { return new Promise(() => { throw new Error("Request error"); }); } export function loading(_path: RequestInfo | URL, _options?: RequestInit) { return new Promise(() => null); }