mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 06:08:34 +01:00
1
This commit is contained in:
parent
538222e1a1
commit
e0aa8cd3d5
1 changed files with 12 additions and 0 deletions
|
@ -193,6 +193,18 @@ app.use("/sb/i/:v/:imagePath/:img", async function (req, res) {
|
|||
f.body.pipe(res);
|
||||
});
|
||||
|
||||
app.get("/api/manifest/dash/id/:id", async (req, res) => {
|
||||
const id = req.params.id;
|
||||
|
||||
let url = `https://invid-api.poketube.fun/bHj665PpYhUdPWuKPfZuQGoX/api/manifest/dash/id/${id}`;
|
||||
|
||||
let f = await modules.fetch(url, {
|
||||
method: req.method,
|
||||
});
|
||||
|
||||
f.body.pipe(res);
|
||||
});
|
||||
|
||||
app.get("/api/improving-poke/getsugesstions", async (req, res) => {
|
||||
const query = req.query.q;
|
||||
|
||||
|
|
Loading…
Reference in a new issue