Spaces:
Runtime error
Runtime error
File size: 274 Bytes
7204409 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # helpers/models.py
from dataclasses import dataclass
from typing import Optional
@dataclass
class S3Config:
"""Configuration for S3 connection."""
bucket_name: str
endpoint_url: str
access_key: str
secret_key: str
region_name: Optional[str] = None
|