mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-30 05:32:30 +08:00
17 lines
380 B
Python
17 lines
380 B
Python
# [Backward compatibility]: keep importing modules functions
|
|
from ..utils.deprecation import deprecation
|
|
from ..utils.importlib import require_modules, func_name, module_name
|
|
|
|
|
|
deprecation(
|
|
name='ddtrace.contrib.util',
|
|
message='Use `ddtrace.utils.importlib` module instead',
|
|
version='1.0.0',
|
|
)
|
|
|
|
__all__ = [
|
|
'require_modules',
|
|
'func_name',
|
|
'module_name',
|
|
]
|