in config/config.go [105:113]
func hasAccess(path string) bool { status := true file, err := os.Open(path) if err != nil { status = false } file.Close() return status }