package crud import "strings" func FirstLetterToUpper(name string) string { return strings.ToUpper(name[:1]) + name[1:] }