11 lines
206 B
C#
11 lines
206 B
C#
namespace SQLLinter.Core.Interfaces;
|
|
|
|
public interface IFileSystemWrapper
|
|
{
|
|
bool FileExists(string path);
|
|
|
|
bool PathIsValidForLint(string path);
|
|
|
|
string CombinePath(params string[] paths);
|
|
}
|