This commit is contained in:
贾同学
2025-10-16 20:01:57 +08:00
commit 4768ef2d26
79 changed files with 3358 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import { logger } from 'ee-core/log';
// effect service
class EffectService {
// hello
async hello(args: any): Promise<{ status: string; params: any }> {
let obj = {
status:'ok',
params: args
}
logger.info('EffectService obj:', obj);
return obj;
}
}
EffectService.toString = () => '[class EffectService]';
const effectService = new EffectService();
export {
EffectService,
effectService
}