mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-27 12:00:59 +00:00
11 lines
281 B
TypeScript
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 {}
|