api-server/src/modules/auth/auth.module.ts

13 lines
418 B
TypeScript
Raw Normal View History

import { Module } from '@nestjs/common';
import { AuthController } from './auth.controller';
import { AuthService } from './auth.service';
import { AppleAuthService } from './apple-auth.service';
import { TokenService } from './token.service';
@Module({
controllers: [AuthController],
providers: [AuthService, AppleAuthService, TokenService],
exports: [AuthService, TokenService],
})
export class AuthModule {}