mirror of https://github.com/portainer/portainer
13 lines
316 B
Go
13 lines
316 B
Go
|
package testhelpers
|
||
|
|
||
|
type gitService struct{}
|
||
|
|
||
|
// NewGitService creates new mock for portainer.GitService.
|
||
|
func NewGitService() *gitService {
|
||
|
return &gitService{}
|
||
|
}
|
||
|
|
||
|
func (service *gitService) CloneRepository(destination string, repositoryURL, referenceName string, username, password string) error {
|
||
|
return nil
|
||
|
}
|