mirror of
https://gitlab.com/kupfer/kupferbootstrap.git
synced 2025-02-23 13:45:45 -05:00
10 lines
262 B
Python
10 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)
|