()
| 357 | // gitClient is used to implement functions that can be performed on both local and remote git repositories |
| 358 | type gitClient interface { |
| 359 | LastCommit() (*git.Commit, error) |
| 360 | } |
| 361 | |
| 362 | type localGitClient struct { |
no outgoing calls
no test coverage detected