10 lines
249 B
TypeScript
10 lines
249 B
TypeScript
import { Injectable } from '@nestjs/common';
|
|
import { PubSubOptions } from './interfaces/pub-sub-options.interface';
|
|
|
|
@Injectable()
|
|
export class PubSubService {
|
|
private options = new Map<string, PubSubOptions>();
|
|
private pubClient;
|
|
private;
|
|
}
|