localconfig/configfile_windows.go
2023-01-28 19:26:58 +01:00

10 lines
195 B
Go

//go:build windows
// +build windows
package localconfig
// Configfile is the OS dependent config file location
func GetConfigPath(filename string) string {
return ".\\" + filename
}