package handler func firstExisting(or string, strings ...string) string { for _, s := range strings { if s != "" { return s } } return or }