mirror of
https://github.com/aljazceru/nsecbunkerd.git
synced 2025-12-17 06:04:22 +01:00
7 lines
132 B
TypeScript
7 lines
132 B
TypeScript
import run from './run';
|
|
import type {IOpts} from './run';
|
|
|
|
process.on('message', (configData: IOpts) => {
|
|
run(configData);
|
|
});
|