dive-zfs/utils/format.go
2019-09-21 16:28:45 -04:00

10 lines
130 B
Go

package utils
import (
"github.com/logrusorgru/aurora"
)
func TitleFormat(s string) string {
return aurora.Bold(s).String()
}