mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-09 07:08:18 +00:00
11 lines
304 B
TypeScript
11 lines
304 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { AuthController } from './auth.controller';
|
|
import { PassengerAuthService } from './passenger-auth.service';
|
|
|
|
@Module({
|
|
controllers: [AuthController],
|
|
providers: [PassengerAuthService],
|
|
exports: [PassengerAuthService],
|
|
})
|
|
export class AuthModule {}
|