16 lines
478 B
Python
16 lines
478 B
Python
from ApiServices.TemplateService.initializer.event_clusters import EventCluster, SetEventCluster
|
|
|
|
|
|
TemplateEventCluster = EventCluster(
|
|
endpoint_uu_id="bb20c8c6-a289-4cab-9da7-34ca8a36c8e5"
|
|
)
|
|
|
|
OtherTemplateEventCluster = EventCluster(
|
|
endpoint_uu_id="ecb82b7a-317f-469d-a682-ff431f152453"
|
|
)
|
|
|
|
TemplateEventClusterSet = SetEventCluster()
|
|
TemplateEventClusterSet.add_event_cluster(TemplateEventCluster)
|
|
TemplateEventClusterSet.add_event_cluster(OtherTemplateEventCluster)
|
|
|