salat
Version:
Daily Moroccan prayers time, right in your console, at the tip of your fingers
19 lines (15 loc) • 372 B
JavaScript
const API_URL = "http://www.habous.gov.ma/prieres/horaire-api.php";
const BANNER = ``;
const NOT_FOUND_ERROR = `
Your city was not found in the list
Using the default city
----------------------
You may need to check the spelling
`;
module.exports = {
API_URL,
BANNER,
NOT_FOUND_ERROR,
DEFAULT_CITY: "Marrakech",
LOCAL_STORAGE_PATH: "./storage",
};