aboutsummaryrefslogtreecommitdiff
path: root/internal/service/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/service/config.go')
-rw-r--r--internal/service/config.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/internal/service/config.go b/internal/service/config.go
index d4faeb0..0f32851 100644
--- a/internal/service/config.go
+++ b/internal/service/config.go
@@ -29,7 +29,6 @@ type GlobalConfig struct {
MinInterval *Duration `toml:"min-interval"`
StagingMethod string `toml:"staging-method,omitempty"`
StagingPath string `toml:"staging-path,omitempty"`
- Verify string `toml:"verify,omitempty"`
}
type Config struct {
@@ -47,7 +46,6 @@ var DefaultConfig = Config{
MinInterval: DurationRef(time.Hour),
StagingMethod: StagingMethodNone,
StagingPath: "/tmp/mirror",
- Verify: "",
},
}