UNPKG

vrindavan-places

Version:

A JSON dataset of famous temples and holy places in Vrindavan, India.

15 lines (14 loc) 371 B
const vrindavanPlace=require("./vrindhanvan.json") exports.vrindavan_place = async (word) => { try { const result = vrindavanPlace; return { status:1, message:"All Place Founded Successfully", result } } catch (error) { console.log(error); return { message: "Error fetching distance", error: error.message }; } }