Files
vinlottis/config/defaults/lottery.js
Kasper Rynning-Tønnesen 4051c04c91 token -> gatewayTokeng
2020-04-06 09:42:19 +02:00

18 lines
400 B
JavaScript

try {
module.exports = require("../env/lottery.config");
} catch (e) {
console.error(
"You haven't defined lottery-configs, you sure you want to continue without them?"
);
module.exports = {
name: "NAME MISSING",
phone: "PHONE_MISSING",
price: 10,
message: "INSERT MESSAGE",
date: 5,
hours: 15,
apiUrl: "https://lottis.vin",
gatewayToken: undefined
};
}