This commit is contained in:
himanshu8443
2025-06-17 21:34:39 +05:30
parent a2afb200ad
commit d27461855e
131 changed files with 8759 additions and 0 deletions

14
dist/ringz/stream.js vendored Normal file
View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getStream = void 0;
const getStream = async function ({ link: data, }) {
const streamLinks = [];
const dataJson = JSON.parse(data);
streamLinks.push({
link: dataJson.url,
server: dataJson.server,
type: "mkv",
});
return streamLinks;
};
exports.getStream = getStream;