| 1 | /* |
| 2 | * @Author: nevin |
| 3 | * @Date: 2025-01-24 16:35:59 |
| 4 | * @LastEditTime: 2025-02-06 19:14:24 |
| 5 | * @LastEditors: nevin |
| 6 | * @Description: |
| 7 | */ |
| 8 | import { Module } from '../core/decorators'; |
| 9 | import { TestController } from './controller'; |
| 10 | import { TestService } from './service'; |
| 11 | |
| 12 | @Module({ |
| 13 | controllers: [TestController], |
| 14 | providers: [TestService], |
| 15 | }) |
| 16 | export class TestModule {} |
| 17 |