61bb04c87c
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
11 lines
304 B
Go
11 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
|
|
}
|