mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-30 21:56:07 +08:00
18 lines
329 B
Python
18 lines
329 B
Python
from .config import Config
|
|
from .exceptions import ConfigException
|
|
from .http import HttpConfig
|
|
from .hooks import Hooks
|
|
from .integration import IntegrationConfig
|
|
|
|
# Default global config
|
|
config = Config()
|
|
|
|
__all__ = [
|
|
'config',
|
|
'Config',
|
|
'ConfigException',
|
|
'HttpConfig',
|
|
'Hooks',
|
|
'IntegrationConfig',
|
|
]
|