wire command not foundの対処法
wireをinstallして wire xxxx を実行すると command not foundが出る
https://github.com/google/wire
and ensuring that $GOPATH/bin is added to your $PATH
とあるのでPATHを設定する
code:sh
# ~/.zshrc
export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin
終わり