Files
diyvpn/_diyvpnctl
T
2026-01-18 16:09:24 -05:00

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