From 24778551d8e5b0b47a06494dd28a66a71dfb47f0 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Wed, 5 Feb 2025 01:02:17 +0200 Subject: use of generic ascii table package --- internal/colour/colour.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'internal/colour') diff --git a/internal/colour/colour.go b/internal/colour/colour.go index 0b11163..030a6ef 100644 --- a/internal/colour/colour.go +++ b/internal/colour/colour.go @@ -13,12 +13,12 @@ var ( } Infoln = func(args ...any) { fmt.Println(args...) } - info2Col = color.New(color.FgHiYellow, color.BgBlue) + Info2Col = color.New(color.FgHiYellow, color.BgBlue) Info2fln = func(format string, args ...any) { - info2Col.Printf(format, args...) + Info2Col.Printf(format, args...) fmt.Print("\n") } - SInfo2f = info2Col.SprintfFunc() + SInfo2f = Info2Col.SprintfFunc() warnCol = color.New(color.FgHiWhite, color.BgRed) Warnln = warnCol.PrintlnFunc() -- cgit v1.2.3