8 lines
196 B
Go
8 lines
196 B
Go
package git
|
|
|
|
type Config struct {
|
|
URL string // Source url
|
|
FullPath string // Full clone directory
|
|
Name string // Name of clone (directory name)
|
|
SSHKey string // SSH key for auth
|
|
}
|