aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/system/value.go
blob: aa4da51837663f9a83dfe3192baa120688dd4272 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package system

const (
	xdgRuntimeDir = "XDG_RUNTIME_DIR"
)

type Values struct {
	Share   string
	Runtime string
	RunDir  string
	Verbose bool
}

var (
	V           *Values
	MethodFlags [2]bool
)