2024-04-04 01:12:42 +02:00
|
|
|
package config
|
|
|
|
|
2024-04-04 18:02:04 +02:00
|
|
|
import (
|
2024-04-08 03:56:21 +02:00
|
|
|
"git.gnous.eu/ada/spiegel/internal/git"
|
|
|
|
"git.gnous.eu/ada/spiegel/internal/log"
|
2024-04-04 18:02:04 +02:00
|
|
|
)
|
2024-04-04 01:12:42 +02:00
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
CloneDirectory string // Repository where gir-mirror keep repository
|
|
|
|
Log log.Config
|
2024-04-08 03:22:47 +02:00
|
|
|
Interval int // Update interval in minute
|
2024-05-26 22:00:55 +02:00
|
|
|
RepoList []git.Config
|
2024-04-04 01:12:42 +02:00
|
|
|
}
|