validations endpoint build started

This commit is contained in:
2025-01-29 17:38:51 +03:00
parent f7eedb5ea0
commit 9276740e0e
13 changed files with 202 additions and 153 deletions

View File

@@ -0,0 +1,14 @@
from Events.Engine.abstract_class import CategoryCluster
from info import template_page_info
TemplateCluster = CategoryCluster(
name="TemplateCluster",
tags=["template"],
prefix="/template",
description="Template cluster",
pageinfo=template_page_info,
endpoints={},
include_in_schema=True,
sub_category=[],
)