2023-01-28 13:40:19 +01:00
|
|
|
//go:build windows
|
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package localconfig
|
|
|
|
|
|
|
|
// Configfile is the OS dependent config file location
|
2023-01-28 19:26:58 +01:00
|
|
|
func GetConfigPath(filename string) string {
|
2023-01-28 13:40:19 +01:00
|
|
|
return ".\\" + filename
|
|
|
|
}
|