2023-10-31 11:47:27 -04:00

7 lines
120 B
C#
Executable File

namespace dotless.Core.Input
{
public interface IPathResolver
{
string GetFullPath(string path);
}
}