From 9250d31bee8151a40e9ad5f251a62ebc97f4b937 Mon Sep 17 00:00:00 2001 From: GSTAR <44748406+GLlgGL@users.noreply.github.com> Date: Tue, 14 Oct 2025 21:46:45 +0200 Subject: [PATCH] Update index.ts --- src/source/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/source/index.ts b/src/source/index.ts index 466a308..aebb3fc 100644 --- a/src/source/index.ts +++ b/src/source/index.ts @@ -17,6 +17,7 @@ import { StreamKiste } from './StreamKiste'; import { VerHdLink } from './VerHdLink'; import { VidSrc } from './VidSrc'; import { VixSrc } from './VixSrc'; +import { Kokoshka } from './Kokoshka'; export * from './Source'; @@ -47,5 +48,8 @@ export const createSources = (fetcher: Fetcher): Source[] => { // IT new Eurostreaming(fetcher), new MostraGuarda(fetcher), + + // AL + new Kokoshka(fetcher), ].filter(source => !disabledSources.includes(source.id)); };