package main
import (
"context"
"encoding/json"
"fmt"
"io"
"os"
"github.com/HewlettPackard/docker/api/client"
"github.com/docker/docker/api/types"
"github.com/docker/docker/api/types/container"
"github.com/docker/docker/client"
)
Here, focues on these 2 specific libs :
"github.com/HewlettPackard/docker/api/client"
"github.com/docker/docker/client"
both of them return a "client", how can I override name of one of those 2 and use both the libraries at once.
Thanks in advance !