Skip to content

Instantly share code, notes, and snippets.

@jacobdo2
Created June 8, 2020 09:02
Show Gist options
  • Save jacobdo2/e122794f85121abaf49d81a0bad2d9bc to your computer and use it in GitHub Desktop.
Save jacobdo2/e122794f85121abaf49d81a0bad2d9bc to your computer and use it in GitHub Desktop.
AuthConfig provider added
import { Module } from '@nestjs/common';
import { AuthService } from './auth.service';
import { AuthConfig } from './auth.config';
@Module({
providers: [AuthService, AuthConfig]
})
export class AuthModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment