mirror of
https://github.com/miguelmota/cointop
synced 2024-11-10 13:10:26 +00:00
03c5eb158b
Former-commit-id: 459b83ad5e
14 lines
161 B
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
|
|
)
|