package ui import "strings" func capitalize(s string) string { if s == "" { return s } return strings.ToUpper(s[:1]) + s[1:] }