10 lines
100 B
Go
Raw Normal View History

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