1
0
Fork 0
mirror of https://codeberg.org/ashley/poke.git synced 2024-11-17 21:54:39 -05:00
poke/src/lyrics.js

15 lines
326 B
JavaScript
Raw Normal View History

2022-08-15 05:55:41 -04:00
const fetch = require("node-fetch");
2022-03-06 11:19:13 -05:00
2022-08-15 05:55:41 -04:00
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;