File: align.go

package info (click to toggle)
golang-github-aquasecurity-table 1.8.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 316 kB
  • sloc: makefile: 11
file content (11 lines) | stat: -rw-r--r-- 123 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
package table

type Alignment uint8

const (
	AlignLeft Alignment = iota
	AlignRight
	AlignCenter
	AlignBottom
	AlignTop
)