Rewrite imports to use forks files on gitlab not use githubs.

This commit is contained in:
James
2017-05-16 11:06:32 -07:00
parent 014858143b
commit e4bb04887e
76 changed files with 154 additions and 154 deletions

View File

@@ -32,9 +32,9 @@ import (
manifest "github.com/docker/distribution/manifest/schema1"
"github.com/fsouza/go-dockerclient"
"github.com/heroku/docker-registry-client/registry"
"github.com/treeder/functions/api/runner/common"
"github.com/treeder/functions/api/runner/common/stats"
"github.com/treeder/functions/api/runner/drivers"
"gitlab.oracledx.com/odx/functions/api/runner/common"
"gitlab.oracledx.com/odx/functions/api/runner/common/stats"
"gitlab.oracledx.com/odx/functions/api/runner/drivers"
)
const hubURL = "https://registry.hub.docker.com"

View File

@@ -28,7 +28,7 @@ import (
"github.com/Sirupsen/logrus"
"github.com/fsouza/go-dockerclient"
"github.com/treeder/functions/api/runner/common"
"gitlab.oracledx.com/odx/functions/api/runner/common"
)
const (

View File

@@ -23,8 +23,8 @@ import (
"testing"
"time"
"github.com/treeder/functions/api/runner/common"
"github.com/treeder/functions/api/runner/drivers"
"gitlab.oracledx.com/odx/functions/api/runner/common"
"gitlab.oracledx.com/odx/functions/api/runner/drivers"
"github.com/vrischmann/envconfig"
)