plantation-tree.module.ts 420 B

1234567891011
  1. // plantation-tree.module.ts
  2. import { Module } from '@nestjs/common';
  3. import { PlantationTreeService } from './plantation-tree.service';
  4. import { PlantationTreeController } from './plantation-tree.controller';
  5. @Module({
  6. providers: [PlantationTreeService],
  7. controllers: [PlantationTreeController],
  8. exports: [PlantationTreeService], // export if other modules need to use it
  9. })
  10. export class PlantationTreeModule {}