api-qobiltu-dev / utils /utils.go
lifedebugger's picture
Deploy files from GitHub repository
8d3c966
raw
history blame
184 Bytes
package utils
func ternaryMessage(condition bool, valueIfTrue string, valueIfFalse string) string {
if condition {
return valueIfTrue
} else {
return valueIfFalse
}
}