17 lines
433 B
Go
17 lines
433 B
Go
|
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...)
|
||
|
}
|