This commit is contained in:
NAME
2026-05-11 08:02:34 +00:00
parent c72a38201a
commit b5cf2502be
13 changed files with 534 additions and 35 deletions
+16
View File
@@ -0,0 +1,16 @@
import {Global, Module} from "@nestjs/common";
import {XbotFollowController} from "./xbot-follow.controller";
import {XbotFollowService} from "./xbot-follow.service";
import {PlaywrightXService} from "./playwright-x.service";
@Global()
@Module({
imports: [],
providers: [
PlaywrightXService,
XbotFollowService
],
controllers: [XbotFollowController],
exports: [XbotFollowService],
})
export class XbotFollowModule {}