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

10 lines
190 B
C#
Executable File

namespace dotless.Core.Input
{
public class RelativePathResolver : IPathResolver
{
public string GetFullPath(string path)
{
return path;
}
}
}