mirror of
https://github.com/openziti/zrok.git
synced 2024-11-22 16:13:47 +01:00
13 lines
306 B
Go
13 lines
306 B
Go
|
package agent
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"github.com/openziti/zrok/agent/agentGrpc"
|
||
|
"github.com/sirupsen/logrus"
|
||
|
)
|
||
|
|
||
|
func (i *agentGrpcImpl) ReleaseShare(_ context.Context, req *agentGrpc.ReleaseShareRequest) (*agentGrpc.ReleaseShareReply, error) {
|
||
|
logrus.Infof("releasing '%v'", req.Token)
|
||
|
return nil, nil
|
||
|
}
|