12 lines
304 B
Go
12 lines
304 B
Go
|
package server
|
||
|
|
||
|
import (
|
||
|
"golang.org/x/net/context"
|
||
|
pb "k8s.io/kubernetes/pkg/kubelet/api/v1alpha1/runtime"
|
||
|
)
|
||
|
|
||
|
// Attach prepares a streaming endpoint to attach to a running container.
|
||
|
func (s *Server) Attach(ctx context.Context, req *pb.AttachRequest) (*pb.AttachResponse, error) {
|
||
|
return nil, nil
|
||
|
}
|