7 lines
141 B
C#
7 lines
141 B
C#
namespace SQLLinter.Core.Interfaces;
|
|
|
|
public interface IGlobPatternMatcher
|
|
{
|
|
IEnumerable<string> GetResultsInFullPath(string path);
|
|
}
|