mirror of
https://github.com/sakaljurgis/kodi-api-server.git
synced 2026-07-08 20:37:41 +00:00
11 lines
329 B
TypeScript
11 lines
329 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { LrtController } from './lrt.controller';
|
|
import { LrtService } from './lrt.service';
|
|
import { KodiApiResponseFactory } from '../kodi-api-response.factory';
|
|
|
|
@Module({
|
|
controllers: [LrtController],
|
|
providers: [KodiApiResponseFactory, LrtService],
|
|
})
|
|
export class LrtModule {}
|