Files
runner/src/Runner.Common/Unit.cs
T

8 lines
163 B
C#
Raw Normal View History

// Represents absence of value.
namespace GitHub.Runner.Common
{
public readonly struct Unit
{
public static readonly Unit Value = default;
}
}