Initial commit

This commit is contained in:
ycc
2023-01-28 13:40:19 +01:00
parent aa5c0a0325
commit 455fbeaf8a
6 changed files with 221 additions and 0 deletions

9
configfile_windows.go Normal file
View File

@@ -0,0 +1,9 @@
//go:build windows
// +build windows
package localconfig
// Configfile is the OS dependent config file location
func getConfig(filename string) string {
return ".\\" + filename
}