spiegel/internal/config/config.go
Ada 5b67a66d74
All checks were successful
ci/woodpecker/push/test Pipeline was successful
ci/woodpecker/push/lint Pipeline was successful
Support clone of archived repo via /git/<name>
2024-05-26 22:00:55 +02:00

13 lines
308 B
Go

package config
import (
"git.gnous.eu/ada/spiegel/internal/git"
"git.gnous.eu/ada/spiegel/internal/log"
)
type Config struct {
CloneDirectory string // Repository where gir-mirror keep repository
Log log.Config
Interval int // Update interval in minute
RepoList []git.Config
}