(filename string)
| 159 | } |
| 160 | |
| 161 | func isDir(filename string) bool { |
| 162 | fi, err := os.Stat(filename) |
| 163 | return err == nil && fi.IsDir() |
| 164 | } |
| 165 | |
| 166 | type DotChainloopConfig struct { |
| 167 | ProjectVersion string `yaml:"projectVersion"` |
no outgoing calls
no test coverage detected