sinka/api/src/freight/freight.module.ts
2026-09-16 04:57:09 +00:00

12 lines
344 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 {}