Merge pull request #432 from runcom/mock-exec
server: mock ExecResponse
This commit is contained in:
commit
e0abd16421
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue