build: Use canonical import path for mobytime

This change fixes the following warning issued by using `go get` with
the Pulumi repository:

package github.com/moby/moby/api/types/time: code in directory
/Users/James/Code/go/src/github.com/moby/moby/api/types/time expects
import "github.com/docker/docker/api/types/time"

Moby defines canonical import paths [1] reflecting the lineage back to
the `docker/docker` repository.

[1]: https://github.com/moby/moby/blob/master/api/types/time/duration_convert.go#L1
This commit is contained in:
James Nugent 2018-06-21 18:05:55 -05:00 committed by Matt Ellis
parent d6248bb1d5
commit a1e2da3b76

View file

@ -18,7 +18,7 @@ import (
"fmt"
"time"
mobytime "github.com/moby/moby/api/types/time"
mobytime "github.com/docker/docker/api/types/time"
"github.com/pkg/errors"
"github.com/spf13/cobra"