mirror of
https://github.com/koel/koel
synced 2024-12-19 17:13:09 +00:00
6 lines
200 B
TypeScript
6 lines
200 B
TypeScript
import { http } from '@/services'
|
|
|
|
export const genreStore = {
|
|
fetchAll: async () => await http.get<Genre[]>('genres'),
|
|
fetchOne: async (name: string) => await http.get<Genre>(`genres/${name}`)
|
|
}
|