UNPKG

tcp-serial-relay

Version:

Modular TCP to Serial relay service with comprehensive logging, monitoring and web dashboard

10 lines (8 loc) 311 B
// job.js - Legacy entry point for backward compatibility // This file maintains the original interface while using the new modular structure const { main } = require('./src/app'); // Run the main application main().catch((error) => { console.error('Fatal application error:', error); process.exit(1); });