| 1234567891011 |
- // plantation-tree.module.ts
- import { Module } from '@nestjs/common';
- import { PlantationTreeService } from './plantation-tree.service';
- import { PlantationTreeController } from './plantation-tree.controller';
- @Module({
- providers: [PlantationTreeService],
- controllers: [PlantationTreeController],
- exports: [PlantationTreeService], // export if other modules need to use it
- })
- export class PlantationTreeModule {}
|