chore: created auth module and installed relevant base dependencies

This commit is contained in:
Balu Babu
2023-01-09 12:10:06 +05:30
parent a6ce882511
commit 445102226e
3 changed files with 264 additions and 12 deletions

View File

@@ -3,6 +3,7 @@ import { GraphQLModule } from '@nestjs/graphql';
import { ApolloDriver, ApolloDriverConfig } from '@nestjs/apollo';
import { UserModule } from './user/user.module';
import { GQLComplexityPlugin } from './plugins/GQLComplexityPlugin';
import { AuthModule } from './auth/auth.module';
@Module({
imports: [
@@ -44,6 +45,7 @@ import { GQLComplexityPlugin } from './plugins/GQLComplexityPlugin';
driver: ApolloDriver,
}),
UserModule,
AuthModule,
],
providers: [GQLComplexityPlugin],
})