(id: string)
| 10 | } |
| 11 | |
| 12 | export async function getUser(id: string) { |
| 13 | return await get<User>(`/users/${id}`); |
| 14 | } |
| 15 | |
| 16 | export async function getFeeds(category: string) { |
| 17 | return await get<Feed[]>(`/articles/${category}`); |
nothing calls this directly
no outgoing calls
no test coverage detected