From 8cd5c91aea797273fbad155403936f13891326f3 Mon Sep 17 00:00:00 2001 From: WebStreamr <210764791+webstreamr@users.noreply.github.com> Date: Fri, 8 Aug 2025 08:20:48 +0000 Subject: [PATCH] chore: add MostraGuarda to live/health check --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index a37de98..e3f104c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -9,6 +9,7 @@ import { createExtractors, ExtractorRegistry } from './extractor'; import { createSources, Source } from './source'; import { HomeCine } from './source/HomeCine'; import { MeineCloud } from './source/MeineCloud'; +import { MostraGuarda } from './source/MostraGuarda'; import { Soaper } from './source/Soaper'; import { contextFromRequestAndResponse, envGet, envIsProd, Fetcher, StreamResolver } from './utils'; @@ -80,6 +81,7 @@ const liveHandler = async (req: Request, res: Response) => { const sources: Source[] = [ new HomeCine(fetcher), new MeineCloud(fetcher), + new MostraGuarda(fetcher), new Soaper(fetcher), ];