2019-03-07 23:15:41 -08:00

10 lines
100 B
Go

package termui
type Alignment uint
const (
AlignLeft Alignment = iota
AlignCenter
AlignRight
)