9 lines
182 B
Python
9 lines
182 B
Python
|
|
# config/config.py
|
||
|
|
|
||
|
|
from typing import Dict
|
||
|
|
|
||
|
|
config: Dict[str, str] = {
|
||
|
|
"DB_URL": "mysql+pymysql://username:password@hostname/database",
|
||
|
|
"ADMIN_PASSWORD": "admin_password"
|
||
|
|
}
|