tooot/src/utils/fetches/emojisFetch.ts

11 lines
213 B
TypeScript
Raw Normal View History

2020-12-13 14:04:25 +01:00
import client from '@api/client'
2020-11-15 20:29:43 +01:00
export const emojisFetch = async () => {
const res = await client({
method: 'get',
instance: 'local',
url: 'custom_emojis'
2020-11-15 20:29:43 +01:00
})
return Promise.resolve(res.body)
}