cs-codex-dist-tests/CodexDistTestCore/PodLogsHandler.cs

8 lines
145 B
C#

namespace CodexDistTestCore
{
public interface IPodLogsHandler
{
void Log(int id, string podDescription, Stream log);
}
}