mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-11 19:04:35 +00:00
13 lines
316 B
JavaScript
Executable File
13 lines
316 B
JavaScript
Executable File
const { QuranService } = require("m3o/quran");
|
|
|
|
// Search the Quran for any form of query or questions
|
|
async function searchTheQuran() {
|
|
let quranService = new QuranService(process.env.MICRO_API_TOKEN);
|
|
let rsp = await quranService.search({
|
|
query: "messenger",
|
|
});
|
|
console.log(rsp);
|
|
}
|
|
|
|
searchTheQuran();
|