feat: now-playing polling from Record API with station mapping and WebSocket broadcast

This commit is contained in:
nk
2026-06-02 19:31:48 +03:00
parent 2ae682fb68
commit 7823b17d55
4 changed files with 219 additions and 15 deletions

View File

@@ -1,9 +1,10 @@
import { Module } from '@nestjs/common';
import { NowPlayingGateway } from './now-playing.gateway';
import { NowPlayingService } from './now-playing.service';
import { RecordStationSyncService } from './record-station-sync.service';
@Module({
providers: [NowPlayingGateway, NowPlayingService],
providers: [NowPlayingGateway, NowPlayingService, RecordStationSyncService],
exports: [NowPlayingService],
})
export class NowPlayingModule {}