Update index.ts

This commit is contained in:
GSTAR 2025-10-14 21:46:45 +02:00 committed by WebStreamr
parent fc8269ba8f
commit 9250d31bee
No known key found for this signature in database

View file

@ -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));
};