cheat/internal/display/underline.go
Chris Allen Lane 85f5ae8ec7 chore: various lint corrections
Make various lint corrections in order to appease `staticcheck`.
2022-08-04 20:43:50 -04:00

8 lines
156 B
Go

package display
import "fmt"
// Underline returns an underlined string
func Underline(str string) string {
return fmt.Sprintf("\033[4m%s\033[0m", str)
}