Remove unnecessary json tag in MuteTimeInterval

Signed-off-by: Ben Ridley <benridley29@gmail.com>
This commit is contained in:
Ben Ridley 2020-12-16 21:32:21 +11:00
parent 5983d2078d
commit 253e28abde
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ func resolveFilepaths(baseDir string, cfg *Config) {
// MuteTimeInterval represents a named set of time intervals for which a route should be muted.
type MuteTimeInterval struct {
Name string `yaml:"name" json:"name"`
Name string `yaml:"name"`
TimeIntervals []timeinterval.TimeInterval `yaml:"time_intervals"`
}