termui/alignment.go

10 lines
100 B
Go

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