Browse code

jhoward/opengcs --> Microsoft/opengcs

Signed-off-by: John Howard <jhoward@microsoft.com>

John Howard authored on 2017/08/09 06:21:56
Showing 4 changed files
... ...
@@ -68,12 +68,12 @@ import (
68 68
 	"time"
69 69
 
70 70
 	"github.com/Microsoft/hcsshim"
71
+	"github.com/Microsoft/opengcs/client"
71 72
 	"github.com/docker/docker/daemon/graphdriver"
72 73
 	"github.com/docker/docker/pkg/archive"
73 74
 	"github.com/docker/docker/pkg/idtools"
74 75
 	"github.com/docker/docker/pkg/ioutils"
75 76
 	"github.com/docker/docker/pkg/system"
76
-	"github.com/jhowardmsft/opengcs/gogcs/client"
77 77
 	"github.com/sirupsen/logrus"
78 78
 )
79 79
 
... ...
@@ -6,10 +6,10 @@ import (
6 6
 	"path/filepath"
7 7
 	"strings"
8 8
 
9
+	"github.com/Microsoft/opengcs/client"
9 10
 	"github.com/docker/docker/container"
10 11
 	"github.com/docker/docker/layer"
11 12
 	"github.com/docker/docker/libcontainerd"
12
-	"github.com/jhowardmsft/opengcs/gogcs/client"
13 13
 	"golang.org/x/sys/windows/registry"
14 14
 )
15 15
 
... ...
@@ -15,9 +15,9 @@ import (
15 15
 	"golang.org/x/net/context"
16 16
 
17 17
 	"github.com/Microsoft/hcsshim"
18
+	opengcs "github.com/Microsoft/opengcs/client"
18 19
 	"github.com/docker/docker/pkg/sysinfo"
19 20
 	"github.com/docker/docker/pkg/system"
20
-	opengcs "github.com/jhowardmsft/opengcs/gogcs/client"
21 21
 	specs "github.com/opencontainers/runtime-spec/specs-go"
22 22
 	"github.com/sirupsen/logrus"
23 23
 )
... ...
@@ -2,7 +2,7 @@ package libcontainerd
2 2
 
3 3
 import (
4 4
 	"github.com/Microsoft/hcsshim"
5
-	opengcs "github.com/jhowardmsft/opengcs/gogcs/client"
5
+	opengcs "github.com/Microsoft/opengcs/client"
6 6
 	"github.com/opencontainers/runtime-spec/specs-go"
7 7
 )
8 8