12 lines
500 B
Python
12 lines
500 B
Python
from ApiControllers.abstracts.event_clusters import EventCluster, RouterCluster
|
|
from .supers_events import (
|
|
ServiceEndpointListEvent,
|
|
)
|
|
|
|
ServiceEndpointRouterCluster = RouterCluster(name="ServiceEndpointRouterCluster")
|
|
ServiceEndpointEventClusterList = EventCluster(
|
|
name="ServiceList", endpoint_uu_id="82ef3444-a26a-499d-8c77-ca2e95d6ceb9"
|
|
)
|
|
ServiceEndpointEventClusterList.add_event(ServiceEndpointListEvent)
|
|
ServiceEndpointRouterCluster.set_event_cluster(ServiceEndpointEventClusterList)
|