sinka/api/src/freight/freight.module.ts
2026-09-15 21:10:42 -03:00

12 lines
333 B
TypeScript

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 {}