aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/system/value.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/system/value.go')
-rw-r--r--internal/system/value.go17
1 files changed, 17 insertions, 0 deletions
diff --git a/internal/system/value.go b/internal/system/value.go
new file mode 100644
index 00000000..aa4da518
--- /dev/null
+++ b/internal/system/value.go
@@ -0,0 +1,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
+)