import { useQuery } from "@tanstack/react-query"; import { getProxyHosts, type ProxyHost, type ProxyHostExpansion } from "src/api/backend"; const fetchProxyHosts = (expand?: ProxyHostExpansion[]) => { return getProxyHosts(expand); }; const useProxyHosts = (expand?: ProxyHostExpansion[], options = {}) => { return useQuery({ queryKey: ["proxy-hosts", { expand }], queryFn: () => fetchProxyHosts(expand), staleTime: 60 * 1000, ...options, }); }; export { fetchProxyHosts, useProxyHosts };