19 lines
467 B
Python
19 lines
467 B
Python
from Events.Engine.abstract_class import CategoryCluster
|
|
|
|
from .account_records import AccountRecordsEventMethods
|
|
from .info import account_page_info
|
|
|
|
|
|
AccountCluster = CategoryCluster(
|
|
name="AccountCluster",
|
|
tags=["accounts"],
|
|
prefix="/accounts",
|
|
description="Account Cluster",
|
|
pageinfo=account_page_info,
|
|
endpoints={
|
|
"AccountRecordsEventMethods": AccountRecordsEventMethods,
|
|
},
|
|
include_in_schema=True,
|
|
sub_category=[],
|
|
)
|