Files
x-poster-client/src/xbot-follow/xbot-follow.module.ts
T
2026-05-12 02:30:05 +00:00

14 lines
365 B
TypeScript

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 {}