mirror of
https://github.com/outbackdingo/ghorg.git
synced 2026-01-28 18:19:04 +00:00
12 lines
185 B
Go
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
|
|
}
|