lisa-box
Version:
Home automation system L.I.S.A.
18 lines • 673 B
JavaScript
;
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
result["default"] = mod;
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
const fabrix_1 = require("@fabrix/fabrix");
const App = __importStar(require("."));
const app = new fabrix_1.FabrixApp(App);
app.start().catch(app.stop);
process.on('uncaughtException', function (err) {
console.log('Caught exception: ' + err);
console.log(err.stack);
});
//# sourceMappingURL=server.js.map