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