xmtop/vendor/github.com/gizak/termui/alignment.go

10 lines
100 B
Go
Raw Normal View History

2019-01-15 12:18:13 +08:00
package termui
type Alignment uint
2019-01-15 12:18:13 +08:00
const (
AlignLeft Alignment = iota
AlignCenter
AlignRight
)