Files
pqs-9100_tool_client/electron/jobs/example/hello.ts

10 lines
181 B
TypeScript
Raw Normal View History

2025-10-16 20:01:57 +08:00
import { logger } from 'ee-core/log';
/**
* Welcome function
*/
function welcome(): void {
logger.info('[child-process] [jobs/example/hello] welcome !');
}
export { welcome };