mirror of
https://github.com/openziti/zrok.git
synced 2024-11-22 16:13:47 +01:00
18 lines
467 B
Go
18 lines
467 B
Go
package agent
|
|
|
|
import (
|
|
"context"
|
|
"github.com/openziti/zrok/agent/agentGrpc"
|
|
"github.com/openziti/zrok/build"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func (i *agentGrpcImpl) Version(_ context.Context, _ *agentGrpc.VersionRequest) (*agentGrpc.VersionResponse, error) {
|
|
v := build.String()
|
|
logrus.Debugf("responding to version inquiry with '%v'", v)
|
|
return &agentGrpc.VersionResponse{
|
|
V: v,
|
|
ConsoleEndpoint: i.agent.Config().ConsoleEndpoint,
|
|
}, nil
|
|
}
|