UNPKG

event-message-broker

Version:

A Message Bus that uses AWS Stack and RabbitMQ

6 lines (5 loc) 190 B
import { BindTopicInput } from "./utils/types"; export interface IInfrastructure { createQueue(queueName: string): Promise<void>; bindTopic(binder: BindTopicInput): Promise<void>; }