poke/src/lyrics.js
2022-08-15 11:55:41 +02:00

15 lines
326 B
JavaScript

const fetch = require("node-fetch");
async function main(e = "", d = "") {
const lyrics = await fetch(
`https://p.poketube.fun/api/lyrics?query=${e}`
).then((res) => res.json());
if (lyrics == undefined) lyrics = "Lyrics not found";
if (lyrics != undefined) {
return lyrics;
}
}
module.exports = main;