https://git.jolheiser.com/horcrux.git
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
package main import ( "encoding/json" "time" ) type Config struct { Interval Duration Storage string Repos []RepoConfig } type RepoConfig struct { Source string Dest []DestConfig } type DestConfig struct { Forge DestForgeConfig URL string } type DestForgeConfig struct { ForgeConfig Name string TokenFile string } type Duration time.Duration func (d *Duration) UnmarshalJSON(b []byte) error { var s string if err := json.Unmarshal(b, &s); err != nil { return err } dur, err := time.ParseDuration(s) if err != nil { return err } *d = Duration(dur) return nil }