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