11 lines
291 B
TypeScript
11 lines
291 B
TypeScript
|
|
import { Module } from "@nestjs/common";
|
||
|
|
import { SupportController } from "./support.controller";
|
||
|
|
import { SupportService } from "./support.service";
|
||
|
|
|
||
|
|
@Module({
|
||
|
|
controllers: [SupportController],
|
||
|
|
providers: [SupportService],
|
||
|
|
exports: [SupportService],
|
||
|
|
})
|
||
|
|
export class SupportModule {}
|