9 lines
254 B
C#
9 lines
254 B
C#
namespace gregExtractor.Services;
|
|
|
|
public interface ICoverageScanner
|
|
{
|
|
HashSet<string> ScanImplementedPatches(string[] sourceDirs, IProgress<string>? progress);
|
|
|
|
IReadOnlyDictionary<string, IReadOnlyCollection<string>> LastScanMatches { get; }
|
|
}
|