Compare updated template evaluator (#4092)
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
|
||||
namespace GitHub.Actions.WorkflowParser.ObjectTemplating
|
||||
{
|
||||
public interface ITraceWriter
|
||||
{
|
||||
void Error(
|
||||
String format,
|
||||
params Object[] args);
|
||||
|
||||
void Info(
|
||||
String format,
|
||||
params Object[] args);
|
||||
|
||||
void Verbose(
|
||||
String format,
|
||||
params Object[] args);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user