Files
hakurei/internal/system/value.go
2024-09-12 21:07:05 +09:00

14 lines
148 B
Go

package system
const (
xdgRuntimeDir = "XDG_RUNTIME_DIR"
)
type Values struct {
Share string
Runtime string
RunDir string
}
var V *Values