10 lines
191 B
Go
10 lines
191 B
Go
|
//go:build windows
|
||
|
// +build windows
|
||
|
|
||
|
package localconfig
|
||
|
|
||
|
// Configfile is the OS dependent config file location
|
||
|
func getConfig(filename string) string {
|
||
|
return ".\\" + filename
|
||
|
}
|