import type { GithubRepository } from '~/types/github-repository'; export const useGithub = () => { const api = useApi('https://api.github.com'); const getRepoMeta = (owner: string, name: string): UseApiResponse => api.get(`repos/${owner}/${name}`); return { getRepoMeta }; };