File size: 292 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import { Module } from "@nestjs/common";

import { FeatureController } from "./feature.controller";
import { FeatureService } from "./feature.service";

@Module({
  providers: [FeatureService],
  controllers: [FeatureController],
  exports: [FeatureService],
})
export class FeatureModule {}