mirror of
https://gitlab.com/kupfer/kupferbootstrap.git
synced 2025-02-23 05:35:44 -05:00
9 lines
262 B
Python
9 lines
262 B
Python
import click
|
|
|
|
from .forwarding import cmd_forwarding
|
|
from .ssh import cmd_ssh
|
|
from .telnet import cmd_telnet
|
|
|
|
cmd_net = click.Group('net', help='Network utilities like ssh and telnet')
|
|
for cmd in cmd_forwarding, cmd_ssh, cmd_telnet:
|
|
cmd_net.add_command(cmd)
|