🆕 YoutubeTV Broadcasting in rooms !

This commit is contained in:
duckietm
2026-04-10 09:26:50 +02:00
parent c7348a9509
commit 4afdfd8f33
7 changed files with 98 additions and 11 deletions
+4
View File
@@ -0,0 +1,4 @@
let _youtubeEnabled = false;
export const getYoutubeRoomEnabled = () => _youtubeEnabled;
export const setYoutubeRoomEnabled = (enabled: boolean) => { _youtubeEnabled = enabled; };
+1
View File
@@ -0,0 +1 @@
export * from './YouTubeRoomState';