matcher/old/interfaces/message-publisher.ts

4 lines
91 B
TypeScript
Raw Normal View History

2023-08-16 10:28:20 +00:00
export interface IPublishMessage {
publish(routingKey: string, message: string): void;
}