Files
runner/src/Runner.Sdk/ITraceWriter.cs
2019-10-10 00:52:42 -04:00

9 lines
154 B
C#

namespace GitHub.Runner.Sdk
{
public interface ITraceWriter
{
void Info(string message);
void Verbose(string message);
}
}