package helpers import ( "fmt" ) func BoldText(text string) string { return fmt.Sprintf("\033[1m%s\033[0m", text) }