|
3 | 3 |
|
4 | 4 | import click |
5 | 5 |
|
6 | | -from .commands.api import api as command_api |
7 | | -from .commands.aws import aws as group_aws |
8 | | -from .commands.cache import cache as group_cache |
9 | | -from .commands.checkin import checkin as command_checkin |
10 | | -from .commands.checkout import checkout as command_checkout |
11 | | -from .commands.clear import clear as group_clear |
12 | | -from .commands.configure import configure as group_configure |
13 | | -from .commands.login import login as command_login |
14 | | -from .commands.logout import logout as command_logout |
15 | | -from .commands.ls import ls as group_ls |
16 | | -from .commands.request import request as group_request |
17 | | -from .commands.secret import secret as group_secret |
18 | | -from .commands.ssh import ssh as group_ssh |
19 | | -from .commands.user import user as command_user |
20 | | -from .options.britive_options import britive_options |
| 6 | +from pybritive.commands.api import api as command_api |
| 7 | +from pybritive.commands.aws import aws as group_aws |
| 8 | +from pybritive.commands.cache import cache as group_cache |
| 9 | +from pybritive.commands.checkin import checkin as command_checkin |
| 10 | +from pybritive.commands.checkout import checkout as command_checkout |
| 11 | +from pybritive.commands.clear import clear as group_clear |
| 12 | +from pybritive.commands.configure import configure as group_configure |
| 13 | +from pybritive.commands.login import login as command_login |
| 14 | +from pybritive.commands.logout import logout as command_logout |
| 15 | +from pybritive.commands.ls import ls as group_ls |
| 16 | +from pybritive.commands.request import request as group_request |
| 17 | +from pybritive.commands.secret import secret as group_secret |
| 18 | +from pybritive.commands.ssh import ssh as group_ssh |
| 19 | +from pybritive.commands.user import user as command_user |
| 20 | +from pybritive.options.britive_options import britive_options |
21 | 21 |
|
22 | 22 |
|
23 | 23 | def safe_cli(): |
|
0 commit comments