mirror of
https://github.com/gabrie30/ghorg.git
synced 2025-08-07 06:47:14 +02: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
|
|
}
|