mirror of
https://github.com/actions/runner.git
synced 2025-12-11 04:46:58 +00:00
10 lines
174 B
C#
10 lines
174 B
C#
using System;
|
|
|
|
namespace GitHub.Actions.Expressions
|
|
{
|
|
public interface ITraceWriter
|
|
{
|
|
void Info(String message);
|
|
void Verbose(String message);
|
|
}
|
|
} |