1from __future__ import absolute_import
2
3from . import TPunitA
4from . import TPunitB
5
6
7def __lldb_init_module(debugger, *args):
8    debugger.HandleCommand(
9        "command script add -f thepackage.TPunitA.command TPcommandA")
10    debugger.HandleCommand(
11        "command script add -f thepackage.TPunitB.command TPcommandB")
12