Skip to content

Commit

Permalink
fix(modules/items/albums): remove subscriber
Browse files Browse the repository at this point in the history
  • Loading branch information
Mnigos committed Sep 11, 2024
1 parent 4fabe7d commit 5ea426c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 203 deletions.
149 changes: 0 additions & 149 deletions src/modules/items/albums/album.subscriber.spec.ts

This file was deleted.

51 changes: 0 additions & 51 deletions src/modules/items/albums/album.subscriber.ts

This file was deleted.

5 changes: 2 additions & 3 deletions src/modules/items/albums/albums.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@ import { Album } from './album.entity'
import { AlbumsController } from './albums.controller'
import { AlbumsRepository } from './albums.repository'
import { AlbumsService } from './albums.service'
import { AlbumSubscriber } from './album.subscriber'

import { ImagesModule } from '@modules/items/images'
import { ArtistsModule } from '@modules/items/artists'
import { ImagesModule } from '@modules/items/images'
import { TracksModule } from '@modules/items/tracks'
import { SpotifyModule } from '@modules/spotify'

Expand All @@ -20,7 +19,7 @@ import { SpotifyModule } from '@modules/spotify'
ArtistsModule,
ImagesModule,
],
providers: [AlbumsRepository, AlbumsService, AlbumSubscriber],
providers: [AlbumsRepository, AlbumsService],
controllers: [AlbumsController],
exports: [AlbumsRepository, AlbumsService],
})
Expand Down

0 comments on commit 5ea426c

Please sign in to comment.