Marc Cataford
d6bce67296
* feat: better formatting for which/where printouts * chore: update version to 0.0.6
12 lines
160 B
Go
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)
|
|
}
|