1
0
mirror of https://gitea.com/gitea/act_runner.git synced 2025-01-15 20:53:04 +01:00
2022-11-24 15:38:21 +08:00

14 lines
303 B
Go

package client
import (
"code.gitea.io/bots-proto-go/ping/v1/pingv1connect"
"code.gitea.io/bots-proto-go/runner/v1/runnerv1connect"
)
// A Client manages communication with the runner.
type Client interface {
pingv1connect.PingServiceClient
runnerv1connect.RunnerServiceClient
Address() string
}