woj-server/pkg/utils/if.go

10 lines
150 B
Go
Raw Normal View History

2022-09-07 23:34:37 +08:00
package utils
func If(condition bool, trueVal, falseVal interface{}) interface{} {
if condition {
return trueVal
} else {
return falseVal
}
}