2019-01-14 20:19:17 -08:00

10 lines
99 B
Go

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