termui/alignment.go
Yuanbo Guo 0b52bac91f Move sub /v3 to repo root
Use v3 as dev branch, use master as tagged release branch
2021-01-16 13:14:35 +08:00

10 lines
100 B
Go

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