mirror of
https://github.com/outbackdingo/ghorg.git
synced 2026-02-05 08:18:02 +00:00
13 lines
203 B
Go
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
|
|
}
|