mirror of
https://github.com/koel/koel
synced 2024-12-01 00:09:17 +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}`)
|
|
}
|