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