返回 AiToEarn
module.ts
1 /*
2 * @Author: nevin
3 * @Date: 2025-01-24 16:35:59
4 * @LastEditTime: 2025-03-20 22:26:30
5 * @LastEditors: nevin
6 * @Description: reply Reply 评论
7 */
8 import { AccountModule } from '../account/module';
9 import { AutoRunModule } from '../autoRun/module';
10 import { Module } from '../core/decorators';
11 import { InteractionController } from './controller';
12 import { InteractionService } from './service';
13
14 @Module({
15 imports: [AccountModule, AutoRunModule],
16 controllers: [InteractionController],
17 providers: [InteractionService],
18 })
19 export class InteractionModule {}
20
20 lines TYPESCRIPT