UNPKG

mathura-places

Version:

A list of famous places in Mathura including temples and historical spots.

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