项目初次搭建

This commit is contained in:
2025-02-13 16:29:28 +08:00
parent feef37cbd7
commit 3cb2a4c507
121 changed files with 19550 additions and 0 deletions

4
app/common/redis_cli.py Normal file
View File

@ -0,0 +1,4 @@
import redis
from app.config.config_reader import redis_db, redis_password, redis_port, redis_host
redis_conn = redis.Redis(host=redis_host, port=redis_port, db=redis_db, password=redis_password, decode_responses=True)