返回 AiToEarn
module.ts
1 /*
2 * @Author: nevin
3 * @Date: 2025-01-24 16:35:59
4 * @LastEditTime: 2025-03-18 19:50:10
5 * @LastEditors: nevin
6 * @Description: autoRun AutoRun 自动脚本
7 */
8 import { Module } from '../core/decorators';
9 import { AutoRunController } from './controller';
10 import { AutoRunService } from './service';
11
12 @Module({
13 controllers: [AutoRunController],
14 providers: [AutoRunService],
15 })
16 export class AutoRunModule {}
17
17 lines TYPESCRIPT