build: trident-sync prepare

This commit is contained in:
xiaojunnuo
2023-01-29 13:44:19 +08:00
parent dcd1023a39
commit 07a45b4530
589 changed files with 36886 additions and 2 deletions
@@ -0,0 +1,26 @@
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);
}
}