add kodi api web interface

This commit is contained in:
Jurgis Sakalauskas
2023-01-04 09:13:06 +02:00
parent 9cf70326af
commit 8c900a774e
8 changed files with 555 additions and 8 deletions
@@ -0,0 +1,12 @@
import { Module } from '@nestjs/common';
import { KodiApiInterfaceController } from './kodi-api-interface.controller';
/**
* Playground module for playing around
*/
@Module({
imports: [],
controllers: [KodiApiInterfaceController],
providers: [],
})
export class KodiApiInterfaceModule {}