7 lines
110 B
Bash
7 lines
110 B
Bash
|
#!/usr/bin/env zsh
|
||
|
|
||
|
# ngrok completions
|
||
|
if command -v ngrok &>/dev/null; then
|
||
|
eval "$(ngrok completion)"
|
||
|
fi
|