12 lines
335 B
TypeScript
12 lines
335 B
TypeScript
|
|
import { Module } from '@nestjs/common';
|
||
|
|
import { AuthController } from './auth.controller';
|
||
|
|
import { AuthService } from './auth.service';
|
||
|
|
import { AuthRepository } from './auth.repository';
|
||
|
|
|
||
|
|
@Module({
|
||
|
|
controllers: [AuthController],
|
||
|
|
providers: [AuthService, AuthRepository],
|
||
|
|
exports: [AuthService],
|
||
|
|
})
|
||
|
|
export class AuthModule {}
|