mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
8 lines
170 B
TypeScript
8 lines
170 B
TypeScript
|
|
import { Module } from '@nestjs/common';
|
||
|
|
import { SpotifyModule } from './spotify/spotify.module';
|
||
|
|
|
||
|
|
@Module({
|
||
|
|
imports: [SpotifyModule]
|
||
|
|
})
|
||
|
|
export class SourcesModule {}
|