ArtifactDriver is the artifact driver for a git repo
| 27 | |
| 28 | // ArtifactDriver is the artifact driver for a git repo |
| 29 | type ArtifactDriver struct { |
| 30 | Username string |
| 31 | Password string |
| 32 | SSHPrivateKey string |
| 33 | InsecureIgnoreHostKey bool |
| 34 | InsecureSkipTLS bool |
| 35 | DisableSubmodules bool |
| 36 | } |
| 37 | |
| 38 | var _ common.ArtifactDriver = &ArtifactDriver{} |
| 39 |
nothing calls this directly
no outgoing calls
no test coverage detected