| 15 | ) |
| 16 | |
| 17 | type zsh struct { |
| 18 | homeDir string |
| 19 | registerFpath string |
| 20 | registerBinary string |
| 21 | rootCmd *cobra.Command |
| 22 | } |
| 23 | |
| 24 | func (z zsh) Register() error { |
| 25 | if err := z.installBinary(); err != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected