termui/alignment.go

10 lines
100 B
Go
Raw Normal View History

2019-01-24 04:12:10 +00:00
package termui
type Alignment uint
const (
AlignLeft Alignment = iota
AlignCenter
AlignRight
)