redis implemntations and api setup completed
This commit is contained in:
33
trash/abstract_class.py
Normal file
33
trash/abstract_class.py
Normal file
@@ -0,0 +1,33 @@
|
||||
class ClusterToMethod:
|
||||
|
||||
TAGS: list = ["Tag or Router"]
|
||||
PREFIX: str = "/..."
|
||||
PAGEINFO: PageInfo
|
||||
ENDPOINTS: list # [MethodEvent, ...]
|
||||
SUBCATEGORY: List[ClassVar[Any]] = [ClusterToMethod, ...]
|
||||
|
||||
def retrieve_all_function_codes():
|
||||
"""
|
||||
[FUNCTION_CODE, ...]
|
||||
self.ENDPOINTS -> iter()
|
||||
"""
|
||||
pass
|
||||
|
||||
def retrieve_page_info():
|
||||
"""
|
||||
PAGE_INFO:ClusterToMethod = {
|
||||
"PageInfo": {...}
|
||||
"subCategory": PAGE_INFO:ClusterToMethod
|
||||
}
|
||||
PAGE_INFO:ClusterToMethod = {
|
||||
"PageInfo": {...}
|
||||
"subCategory": PAGE_INFO:ClusterToMethod
|
||||
}
|
||||
"""
|
||||
pass
|
||||
|
||||
def retrieve_redis_value() -> Dict:
|
||||
"""
|
||||
Key(CLUSTER_FUNCTION_CODES:ClusterToMethod) : Value(PAGE_INFO, [FUNCTION_CODE, ...])
|
||||
"""
|
||||
pass
|
||||
Reference in New Issue
Block a user