43e5211996
Co-authored-by: Tingluo Huang <tingluohuang@github.com>
13 lines
312 B
C#
13 lines
312 B
C#
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();
|
|
}
|
|
}
|