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...) }