15 lines
344 B
Python
15 lines
344 B
Python
from Events.Engine.abstract_class import CategoryCluster
|
|
from .info import building_page_info
|
|
|
|
|
|
BuildingCluster = CategoryCluster(
|
|
name="BuildingCluster",
|
|
tags=["Building"],
|
|
prefix="/building",
|
|
description="Building Cluster",
|
|
pageinfo=building_page_info,
|
|
endpoints={},
|
|
include_in_schema=True,
|
|
sub_category=[],
|
|
)
|