mirror of
https://github.com/kubenetworks/kubevpn.git
synced 2025-12-24 11:51:13 +08:00
12 lines
249 B
Go
12 lines
249 B
Go
package action
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/wencaiwulue/kubevpn/v2/pkg/daemon/rpc"
|
|
)
|
|
|
|
func (svr *Server) Identify(ctx context.Context, req *rpc.IdentifyRequest) (*rpc.IdentifyResponse, error) {
|
|
return &rpc.IdentifyResponse{ID: svr.ID}, nil
|
|
}
|