Collector/config/config.py

9 lines
182 B
Python
Raw Permalink Normal View History

2025-05-30 21:20:55 +00:00
# config/config.py
from typing import Dict
config: Dict[str, str] = {
"DB_URL": "mysql+pymysql://username:password@hostname/database",
"ADMIN_PASSWORD": "admin_password"
}