10 lines
241 B
Python
10 lines
241 B
Python
|
|
from typing import Callable
|
||
|
|
|
||
|
|
|
||
|
|
class Config:
|
||
|
|
exception_logger = None
|
||
|
|
use_legacy_attributes = True
|
||
|
|
upload_base64_image: Callable[[str, str, str, str], str] = (
|
||
|
|
lambda trace_id, span_id, image_name, base64_string: str
|
||
|
|
)
|