6 lines
107 B
Bash
6 lines
107 B
Bash
#!/usr/bin/env zsh
|
|
|
|
# ngrok completions
|
|
if (( ${+commands[ngrok]} )); then
|
|
eval "$(ngrok completion)"
|
|
fi
|