I have an "eventsAppModule" which is a core application, in its providers array, I provide:
provide: PUB_SUB,```
And then in the events resolver that's registered as a provider in the array of the same module, like this:
```@Resolver()
export class EventsResolver {
constructor(
@Inject(PUB_SUB) private pubSub: RedisPubSub,``` but it throws that it can't resolve that PUB_SUB dependency, any ideas why?