mirror of
https://github.com/actions/runner.git
synced 2025-12-10 04:06:57 +00:00
* start calling run service for job completion * cleanup * nit: lines Co-authored-by: Tingluo Huang <tingluohuang@github.com> * clean up * give sanity back to thboop Co-authored-by: Thomas Boop <52323235+thboop@users.noreply.github.com> * add clean up back * clean up * clean up more * oops * copied from existing, but :thumb: Co-authored-by: Thomas Boop <52323235+thboop@users.noreply.github.com> --------- Co-authored-by: Tingluo Huang <tingluohuang@github.com> Co-authored-by: Thomas Boop <52323235+thboop@users.noreply.github.com>
8 lines
163 B
C#
8 lines
163 B
C#
// Represents absence of value.
|
|
namespace GitHub.Runner.Common
|
|
{
|
|
public readonly struct Unit
|
|
{
|
|
public static readonly Unit Value = default;
|
|
}
|
|
} |