From 94a742bc2353a8e17e1b7353b7f815c74f2331bf Mon Sep 17 00:00:00 2001 From: TwinProduction Date: Wed, 4 Dec 2019 17:40:19 -0500 Subject: [PATCH] Fix missing json instruction --- core/types.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/types.go b/core/types.go index f5726981..08aad686 100644 --- a/core/types.go +++ b/core/types.go @@ -86,9 +86,9 @@ func (service *Service) EvaluateConditions() *Result { } type ConditionResult struct { - Condition *Condition - Success bool - Explanation string + Condition *Condition `json:"condition"` + Success bool `json:"success"` + Explanation string `json:"explanation"` } type Condition string