add zsh completions

This commit is contained in:
2026-01-18 16:09:24 -05:00
parent 10ba3fb664
commit 378bce7579
2 changed files with 16 additions and 1 deletions

13
_diyvpnctl Normal file
View File

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