mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-03 05:26:14 +00:00
12 lines
104 B
Go
12 lines
104 B
Go
// +build !windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func homeDir() string {
|
|
return os.Getenv("HOME")
|
|
}
|