(config *config.Config, gitcmd git.GitInterface)
| 15 | } |
| 16 | |
| 17 | func NewGitHubRemoteSource(config *config.Config, gitcmd git.GitInterface) *remoteSource { |
| 18 | return &remoteSource{ |
| 19 | gitcmd: gitcmd, |
| 20 | config: config, |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | func (s *remoteSource) Load(_ interface{}) { |
| 25 | var output string |
no outgoing calls