12 lines
326 B
Go
12 lines
326 B
Go
|
package server
|
||
|
|
||
|
import (
|
||
|
"golang.org/x/net/context"
|
||
|
pb "k8s.io/kubernetes/pkg/kubelet/api/v1alpha1/runtime"
|
||
|
)
|
||
|
|
||
|
// PortForward prepares a streaming endpoint to forward ports from a PodSandbox.
|
||
|
func (s *Server) PortForward(ctx context.Context, req *pb.PortForwardRequest) (*pb.PortForwardResponse, error) {
|
||
|
return nil, nil
|
||
|
}
|