mirror of
https://github.com/vega-org/vega-providers.git
synced 2026-04-17 23:51:44 +00:00
18 lines
406 B
TypeScript
18 lines
406 B
TypeScript
import {Stream, ProviderContext} from '../types';
|
|
|
|
export const ringzGetStream = async function ({
|
|
link: data,
|
|
}: {
|
|
link: string;
|
|
providerContext: ProviderContext;
|
|
}): Promise<Stream[]> {
|
|
const streamLinks: Stream[] = [];
|
|
const dataJson = JSON.parse(data);
|
|
streamLinks.push({
|
|
link: dataJson.url,
|
|
server: dataJson.server,
|
|
type: 'mkv',
|
|
});
|
|
return streamLinks;
|
|
};
|