25 lines
622 B
Python
25 lines
622 B
Python
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=[],
|
|
)
|