2023-02-28 11:44:46 +01:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
2022-08-13 16:41:01 +02:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
2022-12-06 09:37:38 +01:00
|
|
|
"code.gitea.io/actions-proto-go/ping/v1/pingv1connect"
|
|
|
|
"code.gitea.io/actions-proto-go/runner/v1/runnerv1connect"
|
2022-08-13 16:41:01 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// A Client manages communication with the runner.
|
|
|
|
type Client interface {
|
2022-09-25 12:54:00 +02:00
|
|
|
pingv1connect.PingServiceClient
|
|
|
|
runnerv1connect.RunnerServiceClient
|
2022-11-15 15:42:41 +01:00
|
|
|
Address() string
|
2023-02-15 09:51:14 +01:00
|
|
|
Insecure() bool
|
2022-08-13 16:41:01 +02:00
|
|
|
}
|