Ajuste para enrutar por compañia y actividad

This commit is contained in:
2026-01-16 13:40:29 +01:00
parent 51cfae7572
commit 35813c8e43
8 changed files with 53 additions and 22 deletions

View File

@@ -1,6 +1,15 @@
import { DomainEvent } from "./DomainEvent";
export namespace SimEvents {
export type general = DomainEvent & {
key: string,
payload: {
iccid: string
},
options: {
}
}
export type activation = DomainEvent & {
key: "sim.activation",
payload: {

View File

@@ -1,9 +0,0 @@
import { RabbitMQEventBus } from "./RabbitMQEventBus";
export class RabbitMQConsumer {
constructor(
connection: RabbitMQEventBus
) {
}
}