mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 01:49:40 +02:00
10 lines
267 B
TypeScript
10 lines
267 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { AuthController } from './auth.controller';
|
|
import { AuthService } from './auth.service';
|
|
|
|
@Module({
|
|
controllers: [AuthController],
|
|
providers: [AuthService],
|
|
exports: [AuthService],
|
|
})
|
|
export class AuthModule {}
|