1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00
Files
tooot/src/utils/fetches/accountFetch.ts
Zhiyuan Zheng 48cab6053c Use new alias
2020-12-13 14:04:25 +01:00

11 lines
250 B
TypeScript

import client from '@api/client'
export const accountFetch = async (key: string, { id }: { id: string }) => {
const res = await client({
method: 'get',
instance: 'local',
url: `accounts/${id}`
})
return Promise.resolve(res.body)
}