16 lines
329 B
Python
16 lines
329 B
Python
from Events.Engine.abstract_class import CategoryCluster
|
|
|
|
# from info import template_page_info
|
|
|
|
|
|
AccountCluster = CategoryCluster(
|
|
name="AccountCluster",
|
|
tags=["template"],
|
|
prefix="/accounts",
|
|
description="Account Cluster",
|
|
pageinfo=None,
|
|
endpoints={},
|
|
include_in_schema=True,
|
|
sub_category=[],
|
|
)
|