diff options
Diffstat (limited to 'internal/service/mirror.go')
-rw-r--r-- | internal/service/mirror.go | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/internal/service/mirror.go b/internal/service/mirror.go index 12aaa79..43dd059 100644 --- a/internal/service/mirror.go +++ b/internal/service/mirror.go @@ -8,10 +8,13 @@ import ( ) type Mirror struct { - Method string `toml:"method,omitempty"` - From *internal.URL `toml:"from,omitempty"` - To *internal.URL `toml:"to,omitempty"` - Description string `toml:"description,omitempty"` + Method string `toml:"method,omitempty"` + From *internal.URL `toml:"from,omitempty"` + To *internal.URL `toml:"to,omitempty"` + Description string `toml:"description,omitempty"` + StagingMethod string `toml:"staging-method,omitempty"` + StagingPath string `toml:"staging-path,omitempty"` + Verify string `toml:"verify,omitempty"` } func (m *Mirror) Equal(arg *Mirror) bool { |