urna-backend / utils /util.go
lifedebugger's picture
Deploy files from GitHub repository
e935eae
raw
history blame contribute delete
184 Bytes
package utils
func ternaryMessage(condition bool, valueIfTrue string, valueIfFalse string) string {
if condition {
return valueIfTrue
} else {
return valueIfFalse
}
}