This repository has been archived on 2024-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
CrunchyDL/components/Crunchyroll/Proxy.ts

9 lines
235 B
TypeScript
Raw Normal View History

import type { Proxies } from "./Types"
export async function getProxies() {
const { data, error } = await useFetch<Proxies>('http://localhost:9941/api/service/proxies', {
method: 'GET',
})
return { data, error }
}