ghorg/scm/structs.go
2021-11-03 19:17:36 -07:00

13 lines
203 B
Go

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