elk/composables/client.ts

10 lines
145 B
TypeScript
Raw Normal View History

2022-11-13 05:34:43 +00:00
import { Client } from '~/api-client'
const client = new Client({
host: 'https://mas.to',
})
export function useClient() {
return client
}