import { Module } from '@nestjs/common'; import { FreightMeController } from './freight-me.controller'; import { FreightMeService } from './freight-me.service'; @Module({ controllers: [FreightMeController], providers: [FreightMeService], }) export class FreightAuthModule {}