mirror of
https://github.com/certd/certd.git
synced 2026-05-17 22:07:34 +08:00
27 lines
808 B
TypeScript
27 lines
808 B
TypeScript
|
|
import { Autoload, Init, Inject, Scope, ScopeEnum } from "@midwayjs/decorator";
|
||
|
|
import { PipelineService } from '../service/pipeline-service';
|
||
|
|
import { logger } from '../../../utils/logger';
|
||
|
|
|
||
|
|
@Autoload()
|
||
|
|
@Scope(ScopeEnum.Singleton)
|
||
|
|
export class AutoRegisterCron {
|
||
|
|
@Inject()
|
||
|
|
pipelineService: PipelineService;
|
||
|
|
|
||
|
|
// @Inject()
|
||
|
|
// echoPlugin: EchoPlugin;
|
||
|
|
|
||
|
|
@Init()
|
||
|
|
async init() {
|
||
|
|
logger.info('加载定时trigger开始');
|
||
|
|
await this.pipelineService.onStartup();
|
||
|
|
// logger.info(this.echoPlugin, this.echoPlugin.test);
|
||
|
|
// logger.info('加载定时trigger完成');
|
||
|
|
//
|
||
|
|
// const meta = getClassMetadata(CLASS_KEY, this.echoPlugin);
|
||
|
|
// console.log('meta', meta);
|
||
|
|
// const metas = listPropertyDataFromClass(CLASS_KEY, this.echoPlugin);
|
||
|
|
// console.log('metas', metas);
|
||
|
|
}
|
||
|
|
}
|