mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-15 01:34:38 +08:00
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
|