2024-04-04 01:12:42 +02:00
|
|
|
package config
|
|
|
|
|
2024-04-04 18:02:04 +02:00
|
|
|
import (
|
|
|
|
"git.gnous.eu/ada/git-mirror/internal/git"
|
|
|
|
"git.gnous.eu/ada/git-mirror/internal/log"
|
|
|
|
)
|
2024-04-04 01:12:42 +02:00
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
CloneDirectory string // Repository where gir-mirror keep repository
|
|
|
|
Log log.Config
|
2024-04-04 18:02:04 +02:00
|
|
|
RepoList []git.RepoConfig
|
2024-04-04 01:12:42 +02:00
|
|
|
}
|