services updated
This commit is contained in:
24
Events/AllEvents/validations/validation/cluster.py
Normal file
24
Events/AllEvents/validations/validation/cluster.py
Normal file
@@ -0,0 +1,24 @@
|
||||
from Events.Engine.abstract_class import CategoryCluster
|
||||
|
||||
from .validation import (
|
||||
ValidationEventMethods,
|
||||
MenuEventMethods,
|
||||
ClusterEventMethods,
|
||||
PageEventMethods,
|
||||
)
|
||||
|
||||
|
||||
ValidationsCluster = CategoryCluster(
|
||||
name="ValidationsCluster",
|
||||
tags=["Validations"],
|
||||
prefix="/validations",
|
||||
description="Validations cluster",
|
||||
endpoints={
|
||||
"ValidationEventMethods": ValidationEventMethods,
|
||||
"MenuEventMethods": MenuEventMethods,
|
||||
"ClusterEventMethods": ClusterEventMethods,
|
||||
"PageEventMethods": PageEventMethods,
|
||||
},
|
||||
include_in_schema=True,
|
||||
sub_category=[],
|
||||
)
|
||||
Reference in New Issue
Block a user