llvm/cross-project-tests/debuginfo-tests/dexter/dex/debugger/dbgeng/__init__.py

# DExTer : Debugging Experience Tester
# ~~~~~~   ~         ~~         ~   ~~
#
# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

from . import dbgeng

import platform

if platform.system() == "Windows":
    from . import breakpoint
    from . import control
    from . import probe_process
    from . import setup
    from . import symbols
    from . import symgroup
    from . import sysobjs
    from . import utils