Files
runner/src/Runner.Worker/IEnvironmentContextData.cs
2019-10-10 00:52:42 -04:00

8 lines
174 B
C#

using System;
using System.Collections.Generic;
public interface IEnvironmentContextData
{
IEnumerable<KeyValuePair<string, string>> GetRuntimeEnvironmentVariables();
}