mirror of
https://github.com/gizak/termui.git
synced 2025-04-24 13:48:50 +08:00
10 lines
100 B
Go
10 lines
100 B
Go
![]() |
package termui
|
||
|
|
||
|
type Alignment uint
|
||
|
|
||
|
const (
|
||
|
AlignLeft Alignment = iota
|
||
|
AlignCenter
|
||
|
AlignRight
|
||
|
)
|