Files
diyvpn/_diyvpnctl

14 lines
204 B
Plaintext

#compdef diyvpnctl
_diyvpnctl_main() {
local -a commands
commands=(
'add:Configure a new VPN server'
'list:List configured VPN servers'
)
_describe 'command' commands
}
_diyvpnctl_main