mirror of https://github.com/docker/docs.git
New import path.
Signed-off-by: Dan Lorenc <lorenc.d@gmail.com>
This commit is contained in:
parent
328977c83e
commit
17536555b1
|
@ -7,16 +7,6 @@
|
|||
"Comment": "weekly-56",
|
||||
"Rev": "afe77d958c701557ec5dc56f6936fcc194d15520"
|
||||
},
|
||||
{
|
||||
"ImportPath": "code.google.com/p/google-api-go-client/compute/v1",
|
||||
"Comment": "release-107",
|
||||
"Rev": "6ddfebb10ece847f1ae09c701834f1b15abbd8b2"
|
||||
},
|
||||
{
|
||||
"ImportPath": "code.google.com/p/google-api-go-client/googleapi",
|
||||
"Comment": "release-107",
|
||||
"Rev": "6ddfebb10ece847f1ae09c701834f1b15abbd8b2"
|
||||
},
|
||||
{
|
||||
"ImportPath": "github.com/MSOpenTech/azure-sdk-for-go",
|
||||
"Comment": "v1.1-14-g814812a",
|
||||
|
@ -27,6 +17,10 @@
|
|||
"Comment": "v0.6.1",
|
||||
"Rev": "1f2ba2c6317323dd667bd266c1e8ebffc4a4c62f"
|
||||
},
|
||||
{
|
||||
"ImportPath": "github.com/codegangsta/cli",
|
||||
"Rev": "fbda1ce02d5dabcee952040e5f4025753b6c9ce0"
|
||||
},
|
||||
{
|
||||
"ImportPath": "github.com/digitalocean/godo",
|
||||
"Comment": "v0.5.0",
|
||||
|
@ -129,8 +123,12 @@
|
|||
"Rev": "ac974c61c2f990f4115b119354b5e0b47550e888"
|
||||
},
|
||||
{
|
||||
"ImportPath": "github.com/codegangsta/cli",
|
||||
"Rev": "fbda1ce02d5dabcee952040e5f4025753b6c9ce0"
|
||||
"ImportPath": "google.golang.org/api/compute/v1",
|
||||
"Rev": "aa91ac681e18e52b1a0dfe29b9d8354e88c0dcf5"
|
||||
},
|
||||
{
|
||||
"ImportPath": "google.golang.org/api/googleapi",
|
||||
"Rev": "aa91ac681e18e52b1a0dfe29b9d8354e88c0dcf5"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -4,17 +4,17 @@
|
|||
//
|
||||
// Usage example:
|
||||
//
|
||||
// import "code.google.com/p/google-api-go-client/compute/v1"
|
||||
// import "google.golang.org/api/compute/v1"
|
||||
// ...
|
||||
// computeService, err := compute.New(oauthHttpClient)
|
||||
package compute
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"code.google.com/p/google-api-go-client/googleapi"
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"fmt"
|
||||
"google.golang.org/api/googleapi"
|
||||
"io"
|
||||
"net/http"
|
||||
"net/url"
|
|
@ -19,7 +19,7 @@ import (
|
|||
"os"
|
||||
"strings"
|
||||
|
||||
"code.google.com/p/google-api-go-client/googleapi/internal/uritemplates"
|
||||
"google.golang.org/api/googleapi/internal/uritemplates"
|
||||
)
|
||||
|
||||
// ContentTyper is an interface for Readers which know (or would like
|
|
@ -12,8 +12,8 @@ import (
|
|||
"time"
|
||||
|
||||
"code.google.com/p/goauth2/oauth"
|
||||
raw "code.google.com/p/google-api-go-client/compute/v1"
|
||||
log "github.com/Sirupsen/logrus"
|
||||
raw "google.golang.org/api/compute/v1"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -5,10 +5,10 @@ import (
|
|||
"io/ioutil"
|
||||
"time"
|
||||
|
||||
raw "code.google.com/p/google-api-go-client/compute/v1"
|
||||
log "github.com/Sirupsen/logrus"
|
||||
"github.com/docker/machine/drivers"
|
||||
"github.com/docker/machine/ssh"
|
||||
raw "google.golang.org/api/compute/v1"
|
||||
)
|
||||
|
||||
// ComputeUtil is used to wrap the raw GCE API code and store common parameters.
|
||||
|
|
Loading…
Reference in New Issue