1# coding=utf-8
2# --------------------------------------------------------------------------
3# Copyright (c) Microsoft Corporation. All rights reserved.
4# Licensed under the MIT License. See License.txt in the project root for license information.
5# Code generated by Microsoft (R) AutoRest Code Generator.
6# Changes may cause incorrect behavior and will be lost if the code is regenerated.
7# --------------------------------------------------------------------------
8
9from ._dynatrace_observability_mgmt_client import DynatraceObservabilityMgmtClient
10from ._version import VERSION
11
12__version__ = VERSION
13
14try:
15 from ._patch import __all__ as _patch_all
16 from ._patch import * # pylint: disable=unused-wildcard-import
17except ImportError:
18 _patch_all = []
19from ._patch import patch_sdk as _patch_sdk
20
21__all__ = [
22 "DynatraceObservabilityMgmtClient",
23]
24__all__.extend([p for p in _patch_all if p not in __all__])
25
26_patch_sdk()