mirror of
https://github.com/actions/runner.git
synced 2026-03-26 14:07:03 +08:00
12 lines
212 B
C#
12 lines
212 B
C#
using System;
|
|
|
|
namespace GitHub.Actions.WorkflowParser
|
|
{
|
|
public interface IFileProvider
|
|
{
|
|
String GetFileContent(String path);
|
|
|
|
String ResolvePath(String defaultRoot, String path);
|
|
}
|
|
}
|