localconfig/configfile_windows.go

10 lines
191 B
Go
Raw Normal View History

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