14 lines
365 B
TypeScript
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 {} |