Files
runner/src/Runner.Worker/IEnvironmentContextData.cs
T

8 lines
174 B
C#
Raw Normal View History

2019-10-10 00:52:42 -04:00
using System;
using System.Collections.Generic;
public interface IEnvironmentContextData
{
IEnumerable<KeyValuePair<string, string>> GetRuntimeEnvironmentVariables();
}