UNPKG

@sourceloop/ctrl-plane-tenant-management-service

Version:

Tenant Management microservice for SaaS control plane

12 lines (9 loc) 371 B
import {injectable, BindingScope} from '@loopback/core'; import {IEventConnector} from '../../types/i-event-connector.interface'; @injectable({scope: BindingScope.TRANSIENT}) export class EventConnector implements IEventConnector<unknown> { constructor() {} publish(event: unknown): Promise<void> { throw Error(`${EventConnector.name} not implemented.`); } }