xud
Version:
Exchange Union Daemon
16 lines • 617 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const dotenv_1 = __importDefault(require("dotenv"));
exports.default = () => {
/** Loads environment variables from the file .env */
dotenv_1.default.config();
/** Rethrow unhandled promise rejection, to crash process of an unwrapped instance */
process.on('unhandledRejection', (err) => {
console.error(err);
throw err;
});
};
//# sourceMappingURL=bootstrap.js.map