18 lines
421 B
Python
18 lines
421 B
Python
from AllConfigs import HostConfig
|
|
|
|
|
|
class WagRedis:
|
|
REDIS_HOST = HostConfig.MAIN_HOST
|
|
REDIS_PASSWORD: str = "commercial_redis_password"
|
|
REDIS_PORT: int = 11222
|
|
REDIS_DB: int = 0
|
|
|
|
@classmethod
|
|
def as_dict(cls):
|
|
return dict(
|
|
host=WagRedis.REDIS_HOST,
|
|
password=WagRedis.REDIS_PASSWORD,
|
|
port=WagRedis.REDIS_PORT,
|
|
db=WagRedis.REDIS_DB,
|
|
)
|