1
0
mirror of https://github.com/tooot-app/app synced 2025-04-03 05:01:35 +02:00
tooot/src/stacks/common/instanceFetch.ts
2020-11-20 01:41:46 +01:00

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)
}