2
0
mirror of https://github.com/miguelmota/cointop synced 2024-11-10 13:10:26 +00:00
cointop/pkg/table/align.go
2020-11-18 20:37:40 -08:00

14 lines
161 B
Go

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