package util // helper function to set a string value to "NotSet" if it wasn't actually set func SetNotSet(v string, s bool) string { if s { return v } return "Notset" }