(path string)
| 392 | } |
| 393 | |
| 394 | func isPathToDirectory(path string) bool { |
| 395 | fileInfo, err := os.Stat(path) |
| 396 | if err != nil { |
| 397 | return false |
| 398 | } |
| 399 | |
| 400 | return fileInfo.Mode().IsDir() |
| 401 | } |
| 402 | |
| 403 | func log(msg string) { |
| 404 | debugLog := viper.GetString(varLog) |
no outgoing calls
no test coverage detected