10 lines
99 B
Go
Raw Normal View History

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