Replace - by _ in file names

This commit is contained in:
TwinProduction
2021-07-02 20:04:05 -04:00
parent 5bf560221f
commit b904afb8b5
5 changed files with 0 additions and 0 deletions

10
core/condition_result.go Normal file
View File

@ -0,0 +1,10 @@
package core
// ConditionResult result of a Condition
type ConditionResult struct {
// Condition that was evaluated
Condition string `json:"condition"`
// Success whether the condition was met (successful) or not (failed)
Success bool `json:"success"`
}