From fd818bb7e85cf45fa5b32a1c5396806e341d6ab0 Mon Sep 17 00:00:00 2001 From: TwinProduction Date: Fri, 6 Sep 2019 22:05:30 -0400 Subject: [PATCH] Minor update --- core/types.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/types.go b/core/types.go index 6707d5ac..2d65e542 100644 --- a/core/types.go +++ b/core/types.go @@ -32,8 +32,8 @@ type Result struct { type Service struct { Name string `yaml:"name"` Url string `yaml:"url"` - Interval int `yaml:"interval,omitempty"` - FailureThreshold int `yaml:"failure-threshold,omitempty"` + Interval int `yaml:"interval,omitempty"` // TODO: Implement + FailureThreshold int `yaml:"failure-threshold,omitempty"` // TODO: Implement Conditions []*Condition `yaml:"conditions"` }