formatter.go: format options added

This commit is contained in:
Celestino Amoroso 2024-05-01 21:53:03 +02:00
parent cd6b7982ee
commit 7c748f0e31

View File

@ -7,7 +7,8 @@ package expr
type FmtOpt uint16
const (
tty FmtOpt = 1 << iota
TTY FmtOpt = 1 << iota
MultiLine
)
type Formatter interface {