koel/resources/assets/js/stores/genreStore.ts
2024-10-14 00:37:01 +07:00

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}`),
}