2
0
mirror of https://github.com/miguelmota/cointop synced 2024-11-10 13:10:26 +00:00
cointop/table/align.go
Miguel Mota 03c5eb158b exports
Former-commit-id: 459b83ad5e
2018-03-30 10:29:26 -07: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
)