Files
edr-platform/apps/edr-freight-api/src/modules/auth/freight-auth.module.ts

11 lines
281 B
TypeScript

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