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

const (
	xdgRuntimeDir = "XDG_RUNTIME_DIR"
)

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

var V *Values