mirror of
https://github.com/elk-zone/elk
synced 2024-12-20 09:38:00 +09:00
10 lines
145 B
TypeScript
10 lines
145 B
TypeScript
|
import { Client } from '~/api-client'
|
||
|
|
||
|
const client = new Client({
|
||
|
host: 'https://mas.to',
|
||
|
})
|
||
|
|
||
|
export function useClient() {
|
||
|
return client
|
||
|
}
|