xref: /llvm-project/lldb/test/API/commands/command/script/import/thepackage/__init__.py (revision 2238dcc39358353cac21df75c3c3286ab20b8f53)
1from . import TPunitA
2from . import TPunitB
3
4
5def __lldb_init_module(debugger, *args):
6    debugger.HandleCommand(
7        "command script add -f thepackage.TPunitA.command TPcommandA"
8    )
9    debugger.HandleCommand(
10        "command script add -f thepackage.TPunitB.command TPcommandB"
11    )
12