Files
runner/src/Sdk/WorkflowParser/IFileProvider.cs
2025-11-07 20:18:52 +00:00

12 lines
212 B
C#

using System;
namespace GitHub.Actions.WorkflowParser
{
public interface IFileProvider
{
String GetFileContent(String path);
String ResolvePath(String defaultRoot, String path);
}
}