12 lines
262 B
Python
12 lines
262 B
Python
from typing import Dict, Any
|
|
|
|
# Demo database
|
|
fake_users_db: Dict[str, Dict[str, Any]] = {
|
|
"demo": {
|
|
"id": "7b0a5c28-32aa-4e39-975f-88c8a029a5e2",
|
|
"email": "demo@example.com",
|
|
"password": "password",
|
|
"disabled": False
|
|
}
|
|
}
|