events initated first endpoint tested

This commit is contained in:
2025-01-30 16:56:40 +03:00
parent b664f64eb4
commit 9781cae858
31 changed files with 576 additions and 521 deletions

View File

@@ -1,15 +1,18 @@
from Events.Engine.abstract_class import CategoryCluster
# from info import template_page_info
from .account_records import AccountRecordsEventMethods
from .info import account_page_info
AccountCluster = CategoryCluster(
name="AccountCluster",
tags=["template"],
tags=["accounts"],
prefix="/accounts",
description="Account Cluster",
pageinfo=None,
endpoints={},
pageinfo=account_page_info,
endpoints={
"AccountRecordsEventMethods": AccountRecordsEventMethods,
},
include_in_schema=True,
sub_category=[],
)