import {Global, Module} from "@nestjs/common"; import {XbotFollowController} from "./xbot-follow.controller"; import {XbotFollowService} from "./xbot-follow.service"; @Global() @Module({ imports: [], providers: [ XbotFollowService ], controllers: [XbotFollowController], exports: [XbotFollowService], }) export class XbotFollowModule {}