plenty of changes to make the package more ergonomic

Including: bug fixes, api changes, new packages, and more!
This commit is contained in:
2024-05-17 15:31:35 +02:00
parent e835318689
commit 3c51f5575b
10 changed files with 378 additions and 178 deletions

View File

@ -19,6 +19,10 @@ const (
ColorBold = "\033[1m"
)
func Bold(txt string) string {
return ColorBold + txt + ColorReset
}
func Red(txt string) string {
return ColorRed + txt + ColorReset
}