feat: added user environments to app module

This commit is contained in:
ankitsridhar16
2022-12-13 16:10:58 +05:30
parent ce94255a9e
commit 8e038f6944
3 changed files with 6 additions and 4 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 { UserEnvironmentsModule } from './user-environment/user-environments.module';
@Module({
imports: [
@@ -44,6 +45,7 @@ import { GQLComplexityPlugin } from './plugins/GQLComplexityPlugin';
driver: ApolloDriver,
}),
UserModule,
UserEnvironmentsModule,
],
providers: [GQLComplexityPlugin],
})