Files
runner/src/Runner.Worker/Dap/IWebSocketDapBridge.cs
T

13 lines
312 B
C#
Raw Normal View History

2026-04-17 14:18:01 +01:00
using System.Threading.Tasks;
using GitHub.Runner.Common;
namespace GitHub.Runner.Worker.Dap
{
[ServiceLocator(Default = typeof(WebSocketDapBridge))]
public interface IWebSocketDapBridge : IRunnerService
{
void Start(int listenPort, int targetPort);
Task ShutdownAsync();
}
}