mirror of
https://github.com/gabrie30/ghorg.git
synced 2025-08-09 15:57:09 +02: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
|
|
}
|