Browse code

use "golang.org/x/net/context" instead of "context"

Signed-off-by: Andrew Hsu <andrewhsu@docker.com>

Andrew Hsu authored on 2016/11/11 01:23:19
Showing 1 changed files
... ...
@@ -2,7 +2,6 @@ package swarm
2 2
 
3 3
 import (
4 4
 	"bufio"
5
-	"context"
6 5
 	"fmt"
7 6
 	"io"
8 7
 	"strings"
... ...
@@ -13,6 +12,7 @@ import (
13 13
 	"github.com/docker/docker/api/types/swarm"
14 14
 	"github.com/docker/docker/cli"
15 15
 	"github.com/docker/docker/cli/command"
16
+	"golang.org/x/net/context"
16 17
 )
17 18
 
18 19
 func newUnlockCommand(dockerCli *command.DockerCli) *cobra.Command {