mirror of
https://gitee.com/dromara/electron-egg.git
synced 2026-05-14 19:52:10 +08:00
11 lines
180 B
JavaScript
11 lines
180 B
JavaScript
'use strict';
|
|
|
|
const { logger } = require('ee-core/log');
|
|
|
|
function welcome() {
|
|
logger.info('[child-process] [jobs/example/hello] welcome ! ');
|
|
}
|
|
|
|
module.exports = {
|
|
welcome
|
|
}; |