2024-04-04 18:02:04 +02:00
|
|
|
package git
|
|
|
|
|
2024-05-26 22:00:55 +02:00
|
|
|
type Config struct {
|
2024-04-04 18:02:04 +02:00
|
|
|
URL string // Source url
|
|
|
|
FullPath string // Full clone directory
|
|
|
|
Name string // Name of clone (directory name)
|
2024-05-22 02:59:08 +02:00
|
|
|
SSHKey string // SSH key for auth
|
2024-04-04 18:02:04 +02:00
|
|
|
}
|