Files
himanshu8443 2a4aa2a680 renaming
2025-06-16 22:26:38 +05:30

22 lines
468 B
TypeScript

import { Stream, ProviderContext } from "../types";
export const getStream = async function ({
link: url, // type, // providerContext,
}: {
link: string;
type: string;
providerContext: ProviderContext;
}): Promise<Stream[]> {
try {
const stream: Stream[] = [];
stream.push({
server: "vadapav",
link: url,
type: url?.split(".").pop() || "mkv",
});
return stream;
} catch (err) {
return [];
}
};