initial state: muzick music player + recommendation engine

This commit is contained in:
kami
2026-07-14 01:35:52 +04:00
commit 737bf19fd1
196 changed files with 32431 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
// Barrel re-export for the library-related services. The previous version of this
// file pointed at `/library/*` paths, but the backend registers library routes at
// the `/api` root (see backend/src/app.ts). Use the per-entity services instead.
export { trackService } from './trackService';
export { artistService } from './artistService';
export { albumService } from './albumService';
export { favoritesService } from './favoritesService';
export type { Track, Artist, Album } from '../types';