15 lines
253 B
Python
15 lines
253 B
Python
"""
|
|
Application configuration.
|
|
"""
|
|
|
|
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class AppConfig:
|
|
"""Application configuration."""
|
|
debug: bool = False
|
|
max_retries: int = 3
|
|
timeout: int = 30
|
|
api_url: str = "https://api.example.com"
|