Files
runner/src/Runner.Common/IExtension.cs
2019-10-10 00:52:42 -04:00

10 lines
150 B
C#

using System;
namespace GitHub.Runner.Common
{
public interface IExtension : IRunnerService
{
Type ExtensionType { get; }
}
}