import { Module } from '@nestjs/common'; import { GeoModule } from '../geo/geo.module'; import { FreightController } from './freight.controller'; import { FreightService } from './freight.service'; @Module({ imports: [GeoModule], controllers: [FreightController], providers: [FreightService], }) export class FreightModule {}