crowdsec/cmd/crowdsec-cli/table/align.go
mmetc 816608daf4
cscli: faster table rendering (#3027)
* cscli: use go-pretty for tables

* lint
2024-05-24 11:17:52 +02:00

12 lines
179 B
Go

package table
import (
"github.com/jedib0t/go-pretty/v6/text"
)
// temporary, backward compatibility only
const (
AlignLeft = text.AlignLeft
AlignRight = text.AlignRight
)