From b2b0bb04c5f4c6c0506c786849d39c50fe92b598 Mon Sep 17 00:00:00 2001 From: Celestino Amoroso Date: Wed, 8 May 2024 07:51:38 +0200 Subject: [PATCH] formatter.go: number base options added --- formatter.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/formatter.go b/formatter.go index 08f4110..d00fb8d 100644 --- a/formatter.go +++ b/formatter.go @@ -9,6 +9,10 @@ type FmtOpt uint16 const ( TTY FmtOpt = 1 << iota MultiLine + Base2 + Base8 + Base10 + Base16 ) type Formatter interface {