File: runtime_win.go

package info (click to toggle)
golang-github-kyoh86-xdg 1.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid
  • size: 184 kB
  • sloc: makefile: 13
file content (13 lines) | stat: -rw-r--r-- 215 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
// +build windows

package xdg

import (
	"os"
)

// RuntimeDir returns XDG runtime directory.
func RuntimeDir() string {
	// XDG_RUNTIME_DIR
	return alternate(os.Getenv(RuntimeDirEnv), os.Getenv("LOCALAPPDATA"))
}