Files
pqs-9100_tool_client/electron/jobs/example/hello.ts
贾同学 4768ef2d26 init
2025-10-16 20:01:57 +08:00

10 lines
181 B
TypeScript

import { logger } from 'ee-core/log';
/**
* Welcome function
*/
function welcome(): void {
logger.info('[child-process] [jobs/example/hello] welcome !');
}
export { welcome };