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

7 lines
163 B
C#
Raw Normal View History

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