StaticPathAnalyzer is an interface for analyzers that can specify static file paths instead of traversing the entire filesystem.
| 125 | // StaticPathAnalyzer is an interface for analyzers that can specify static file paths |
| 126 | // instead of traversing the entire filesystem. |
| 127 | type StaticPathAnalyzer interface { |
| 128 | // StaticPaths returns a list of static file paths to analyze |
| 129 | StaticPaths() []string |
| 130 | } |
| 131 | |
| 132 | type Opener func() (xio.ReadSeekCloserAt, error) |
| 133 |
no outgoing calls
no test coverage detected
searching dependent graphs…