for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
package base
import (
"os"
"path/filepath"
)
var (
HomeDir string
func init() {
dir := os.Getenv("HOME_OVERRIDE")
if dir == "" {
dir, _ = os.UserHomeDir()
}
HomeDir = filepath.Join(dir, ".hdfs_exp")
os.MkdirAll(HomeDir, 0755)