2
0
mirror of https://github.com/miguelmota/cointop synced 2024-11-05 00:00:14 +00:00
cointop/pkg/table/align.go

14 lines
161 B
Go
Raw Normal View History

2018-03-29 22:02:24 +00:00
package table
// Align int
2018-03-29 22:02:24 +00:00
type Align int
const (
// AlignLeft int
2018-03-29 22:02:24 +00:00
AlignLeft = Align(iota)
// AlignRight int
2018-03-29 22:02:24 +00:00
AlignRight
// AlignCenter int
2018-03-29 22:02:24 +00:00
AlignCenter
)