| 1 | /* |
| 2 | * @Author: nevin |
| 3 | * @Date: 2025-03-01 19:27:26 |
| 4 | * @LastEditTime: 2025-04-27 17:36:19 |
| 5 | * @LastEditors: nevin |
| 6 | * @Description: plat Plat 三方平台模块 |
| 7 | */ |
| 8 | import { Module } from '@nestjs/common'; |
| 9 | import { BilibiliModule } from './bilibili/bilibili.module'; |
| 10 | import { GzhModule } from './gzh/gzh.module'; |
| 11 | import { GoogleModule } from './google/google.module'; |
| 12 | import { YoutubeModule } from './youtube/youtube.module'; |
| 13 | import { TwitterModule } from './twitter/twitter.module'; |
| 14 | import { TiktokModule } from './tiktok/tiktok.module'; |
| 15 | |
| 16 | @Module({ |
| 17 | imports: [BilibiliModule, GzhModule, GoogleModule, YoutubeModule, TwitterModule, TiktokModule], |
| 18 | }) |
| 19 | export class PlatModule {} |
| 20 |