mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 12:30:12 +02:00
18 lines
575 B
TypeScript
18 lines
575 B
TypeScript
import { albumArtistsService } from './album-artists.service';
|
|
import { albumsService } from './albums.service';
|
|
import { artistsService } from './artists.service';
|
|
import { authService } from './auth.service';
|
|
import { genresService } from './genres.service';
|
|
import { serversService } from './servers.service';
|
|
import { usersService } from './users.service';
|
|
|
|
export const service = {
|
|
albumArtists: albumArtistsService,
|
|
albums: albumsService,
|
|
artists: artistsService,
|
|
auth: authService,
|
|
genres: genresService,
|
|
servers: serversService,
|
|
users: usersService,
|
|
};
|