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