feat: bootstrap NestJS backend with auth, stations, users, health-check, now-playing
This commit is contained in:
9
src/now-playing/now-playing.module.ts
Normal file
9
src/now-playing/now-playing.module.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { NowPlayingGateway } from './now-playing.gateway';
|
||||
import { NowPlayingService } from './now-playing.service';
|
||||
|
||||
@Module({
|
||||
providers: [NowPlayingGateway, NowPlayingService],
|
||||
exports: [NowPlayingService],
|
||||
})
|
||||
export class NowPlayingModule {}
|
||||
Reference in New Issue
Block a user