26 lines
747 B
Python
26 lines
747 B
Python
from Events.Engine.abstract_class import CategoryCluster
|
|
|
|
from .account_records import (
|
|
AccountRecordsListEventMethods,
|
|
AccountRecordsCreateEventMethods,
|
|
AccountRecordsUpdateEventMethods,
|
|
)
|
|
from .info import account_page_info
|
|
|
|
|
|
AccountCluster = CategoryCluster(
|
|
name="AccountCluster",
|
|
tags=["Account Records"],
|
|
prefix="/accounts",
|
|
description="Account Cluster",
|
|
pageinfo=account_page_info,
|
|
endpoints={
|
|
"AccountRecordsListEventMethods": AccountRecordsListEventMethods,
|
|
"AccountRecordsCreateEventMethods": AccountRecordsCreateEventMethods,
|
|
"AccountRecordsUpdateEventMethods": AccountRecordsUpdateEventMethods,
|
|
},
|
|
include_in_schema=True,
|
|
sub_category=[],
|
|
is_client=True,
|
|
)
|