mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-29 21:23:55 +08:00
21 lines
448 B
Python
21 lines
448 B
Python
# [Backward compatibility]: keep importing modules functions
|
|
from .utils.deprecation import deprecated, deprecation
|
|
from .utils.formats import asbool, deep_getattr, get_env
|
|
from .utils.wrappers import safe_patch, unwrap
|
|
|
|
|
|
deprecation(
|
|
name='ddtrace.util',
|
|
message='Use `ddtrace.utils` package instead',
|
|
version='1.0.0',
|
|
)
|
|
|
|
__all__ = [
|
|
'deprecated',
|
|
'asbool',
|
|
'deep_getattr',
|
|
'get_env',
|
|
'safe_patch',
|
|
'unwrap',
|
|
]
|