ppforge/globals/globals.windows.go

17 lines
433 B
Go
Raw Normal View History

2023-10-13 16:13:33 +02:00
package globals
// Global variables, Mocks, etc.
// This package shall not have any dependency towards the application itself!
import (
"os/user"
"path"
)
func init() {
// ConfigDirectoryList Configuration directory list Windows TODO
var ConfigDirectoryList []string = []string{user.HomeDir, TODO!!!}
// ConfigDirectory Configuration directory string Windows
var ConfigDirectory string = path.Join(ConfigDirectoryList...)
}