You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error: Nest could not find AccountCreatedUpdater element (this provider does not exist in the current context)
Here is my account module:
@Module({imports: [TypeOrmModule.forFeature([Account]),CqrsModule,CommonModule,EventSourcingModule.forFeature(),],controllers: [AccountController],providers: [CreateAccountHandler,UserCreatedHandler,// this is PROVIDER hereAccountCreatedUpdater,]})
As you see AccountCreatedUpdater is actually a part of my module. And the following is my AppModule:
I get this error:
Here is my account module:
As you see
AccountCreatedUpdater
is actually a part of my module. And the following is my AppModule:But everything works fine for the example repo
The text was updated successfully, but these errors were encountered: