ghorg/scm/structs.go
Jay Gabriels f5cbf68006
Refactor git into an interface (#146)
* Refactor git into an interface
2021-08-25 20:34:36 -07:00

12 lines
185 B
Go

package scm
// Repo represents an SCM repo
type Repo struct {
Name string
HostPath string
Path string
URL string
CloneURL string
CloneBranch string
}