v/style.go
Marc Cataford d6bce67296
feat: better formatting for which/where printouts (#11)
* feat: better formatting for which/where printouts

* chore: update version to 0.0.6
2023-11-27 23:46:19 +00:00

12 lines
160 B
Go

package main
import "fmt"
const (
RESET = "\033[0m"
BOLD = "\033[1m"
)
func Bold(text string) string {
return fmt.Sprintf("%s%s%s", BOLD, text, RESET)
}