blob: 94ea6fed7e8a097a8465bf20d6b9933f702d0e5e (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License in the project root for
# license information.
# -------------------------------------------------------------------------
from azure.monitor.opentelemetry._configure import configure_azure_monitor
from ._version import VERSION
__all__ = [
"configure_azure_monitor",
]
__version__ = VERSION
|