feat: added user-history module to app module
This commit is contained in:
parent
b677aa1715
commit
b9ade5d2a3
1 changed files with 2 additions and 0 deletions
|
|
@ -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 { UserHistoryModule } from './user-history/user-history.module';
|
||||
|
||||
@Module({
|
||||
imports: [
|
||||
|
|
@ -44,6 +45,7 @@ import { GQLComplexityPlugin } from './plugins/GQLComplexityPlugin';
|
|||
driver: ApolloDriver,
|
||||
}),
|
||||
UserModule,
|
||||
UserHistoryModule,
|
||||
],
|
||||
providers: [GQLComplexityPlugin],
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in a new issue