zbx-tg-dashboard/redis_db/__init__.py

14 lines
155 B
Python
Executable File

from .crud import (
get_value,
set_value,
ping,
pop_value,
)
__all__ = [
"get_value",
"set_value",
"ping",
"pop_value",
]