rajasthan-tourism
Version:
A project for showcasing Rajasthan's forts, temples, and wildlife
15 lines (14 loc) • 368 B
JavaScript
const rajasthan_places=require("./rajsthan.json")
exports.rajasthan_place = async () => {
try {
const result = rajasthan_places;
return {
status:1,
message:"All Place Founded Successfully",
result
}
} catch (error) {
console.log(error);
return { message: "Error fetching distance", error: error.message };
}
}