You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cointop/pkg/table/align.go

14 lines
161 B
Go

6 years ago
package table
// Align int
6 years ago
type Align int
const (
// AlignLeft int
6 years ago
AlignLeft = Align(iota)
// AlignRight int
6 years ago
AlignRight
// AlignCenter int
6 years ago
AlignCenter
)