]>
Commit | Line | Data |
---|---|---|
cc69fef4 RBR |
1 | #!/usr/bin/env node |
2 | 'use strict'; | |
3 | ||
287fa13b | 4 | const Config = require('../config/config'); |
cc69fef4 RBR |
5 | const Dasein = require('..'); |
6 | ||
7 | const internals = {}; | |
8 | ||
287fa13b | 9 | internals.dasein = new Dasein(Config); |
cc69fef4 RBR |
10 | |
11 | internals.main = () => { | |
12 | ||
287fa13b | 13 | internals.dasein.run().catch((err) => { |
cc69fef4 RBR |
14 | |
15 | console.error(err.stack || err.message || err); | |
16 | process.exit(1); | |
17 | }); | |
18 | }; | |
19 | ||
20 | internals.main(); |