forked from bot/app
15 lines
220 B
Python
15 lines
220 B
Python
# -*- coding: utf-8 -*-
|
||
"""
|
||
共享内存模块。类似于redis,但是更加轻量级。
|
||
"""
|
||
|
||
memory_database = {}
|
||
|
||
|
||
def set_memory(key: str, value: any) -> None:
|
||
pass
|
||
|
||
|
||
def get_mem_data(key: str) -> any:
|
||
pass
|