8 lines
163 B
Go
8 lines
163 B
Go
|
package git
|
||
|
|
||
|
type RepoConfig struct {
|
||
|
URL string // Source url
|
||
|
FullPath string // Full clone directory
|
||
|
Name string // Name of clone (directory name)
|
||
|
}
|