You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cointop/pkg/table/align.go

14 lines
161 B
Go

package table
// Align int
type Align int
const (
// AlignLeft int
AlignLeft = Align(iota)
// AlignRight int
AlignRight
// AlignCenter int
AlignCenter
)