U
This commit is contained in:
@@ -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 {}
|
||||
Reference in New Issue
Block a user