mirror of
https://github.com/tooot-app/app
synced 2025-04-03 05:01:35 +02:00
15 lines
299 B
TypeScript
15 lines
299 B
TypeScript
import client from 'src/api/client'
|
|
|
|
export const instanceFetch = async (
|
|
key: string,
|
|
{ instance }: { instance: string }
|
|
) => {
|
|
const res = await client({
|
|
method: 'get',
|
|
instance: 'remote',
|
|
instanceUrl: instance,
|
|
endpoint: `instance`
|
|
})
|
|
return Promise.resolve(res.body)
|
|
}
|