Files
feishin/server/services/index.ts
T
2022-11-01 11:30:40 -07:00

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,
};