mirror of
https://github.com/koel/koel
synced 2024-12-19 09:03:07 +00:00
6 lines
201 B
TypeScript
6 lines
201 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}`),
|
|
}
|