Merge pull request #432 from runcom/mock-exec

server: mock ExecResponse
This commit is contained in:
Antonio Murdaca 2017-04-06 17:54:28 +02:00 committed by GitHub
commit e0abd16421

View file

@ -7,5 +7,5 @@ import (
// Exec prepares a streaming endpoint to execute a command in the container. // Exec prepares a streaming endpoint to execute a command in the container.
func (s *Server) Exec(ctx context.Context, req *pb.ExecRequest) (*pb.ExecResponse, error) { func (s *Server) Exec(ctx context.Context, req *pb.ExecRequest) (*pb.ExecResponse, error) {
return nil, nil return &pb.ExecResponse{}, nil
} }