20 lines
835 B
Python
20 lines
835 B
Python
from ApiControllers.abstracts.event_clusters import EventCluster, RouterCluster
|
|
from .supers_events import (
|
|
ServiceEndpointListEvent,
|
|
ServiceEndpointToEventsEvent,
|
|
)
|
|
|
|
ServiceEndpointRouterCluster = RouterCluster(name="ServiceEndpointRouterCluster")
|
|
ServiceEndpointEventClusterList = EventCluster(
|
|
name="ServiceList", endpoint_uu_id="f4e4d332-70b1-4121-9fcc-a08850b72aaa"
|
|
)
|
|
ServiceEndpointEventClusterList.add_event(ServiceEndpointListEvent)
|
|
|
|
ServiceEndpointEventClusterToService = EventCluster(
|
|
name="ServiceToEvents", endpoint_uu_id="7b6b0c6a-e3db-4353-a7df-ea49d2a67f8a"
|
|
)
|
|
ServiceEndpointEventClusterToService.add_event(ServiceEndpointToEventsEvent)
|
|
|
|
ServiceEndpointRouterCluster.set_event_cluster(ServiceEndpointEventClusterList)
|
|
ServiceEndpointRouterCluster.set_event_cluster(ServiceEndpointEventClusterToService)
|