From 16e1f48e8d87479df3313ec3b75451a702ed2fe2 Mon Sep 17 00:00:00 2001 From: kangdaehoon Date: Wed, 31 Jan 2024 22:36:45 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9Ddocs:=20Add=20a=20library=20definit?= =?UTF-8?q?ion=20for=20ansi?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b9096db..e94a1c1 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ There is a lot of customization that you can do - change the writer, the color, ```golang bar := progressbar.NewOptions(1000, - progressbar.OptionSetWriter(ansi.NewAnsiStdout()), + progressbar.OptionSetWriter(ansi.NewAnsiStdout()), //you should install "github.com/k0kubun/go-ansi" progressbar.OptionEnableColorCodes(true), progressbar.OptionShowBytes(true), progressbar.OptionSetWidth(15),