printnatura/main.js

16 lines
296 B
JavaScript
Raw Permalink Normal View History

2022-11-04 13:41:36 +00:00
const PrintServer = require('./print-server');
async function main() {
const printServer = new PrintServer();
await printServer.start();
process.on('SIGINT', async function() {
try {
await printServer.stop();
} catch (err) {
console.error(err);
}
process.exit();
});
}
main();