osnova-api-alert/redis_db/__init__.py

14 lines
155 B
Python

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