localconfig/configfile_unix.go
2023-01-28 13:40:19 +01:00

13 lines
255 B
Go

//go:build linux || darwin
// +build linux darwin
package localconfig
import "os"
// Configfile is the OS dependent config file location
func getConfig(filename string) string {
home, _ := os.UserHomeDir()
return home + "/." + filename
}