mirror of
https://github.com/wagoodman/dive
synced 2026-03-14 14:25:50 +01:00
9 lines
130 B
Go
9 lines
130 B
Go
package utils
|
|
|
|
import (
|
|
"github.com/logrusorgru/aurora"
|
|
)
|
|
|
|
func TitleFormat(s string) string {
|
|
return aurora.Bold(s).String()
|
|
}
|