mirror of https://github.com/docker/docs.git
Change imports to use embedded beam version
Signed-off-by: Solomon Hykes <solomon@docker.com>
This commit is contained in:
parent
91ae1d7353
commit
8a8e36e364
|
@ -3,8 +3,8 @@ package backends
|
|||
import (
|
||||
"io"
|
||||
"fmt"
|
||||
"github.com/docker/beam"
|
||||
beamutils "github.com/docker/beam/utils"
|
||||
"github.com/docker/libswarm/beam"
|
||||
beamutils "github.com/docker/libswarm/beam/utils"
|
||||
"strings"
|
||||
"sync"
|
||||
"time"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package inmem
|
||||
|
||||
import (
|
||||
"github.com/docker/beam"
|
||||
"github.com/docker/libswarm/beam"
|
||||
"io"
|
||||
"sync"
|
||||
)
|
||||
|
|
|
@ -2,7 +2,7 @@ package inmem
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/docker/beam"
|
||||
"github.com/docker/libswarm/beam"
|
||||
"github.com/dotcloud/docker/pkg/testutils"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
|
|
|
@ -4,8 +4,8 @@ import (
|
|||
"fmt"
|
||||
"os"
|
||||
|
||||
"github.com/docker/beam"
|
||||
"github.com/docker/beam/data"
|
||||
"github.com/docker/libswarm/beam"
|
||||
"github.com/docker/libswarm/beam/data"
|
||||
)
|
||||
|
||||
func Pair() (*Conn, *Conn, error) {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package unix
|
||||
|
||||
import (
|
||||
"github.com/docker/beam"
|
||||
"github.com/docker/libswarm/beam"
|
||||
"github.com/dotcloud/docker/pkg/testutils"
|
||||
"testing"
|
||||
)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package utils
|
||||
|
||||
import (
|
||||
"github.com/docker/beam"
|
||||
"github.com/docker/libswarm/beam"
|
||||
)
|
||||
|
||||
type Buffer []*beam.Message
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package utils
|
||||
|
||||
import (
|
||||
"github.com/docker/beam"
|
||||
"github.com/docker/libswarm/beam"
|
||||
"sync"
|
||||
)
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ package utils
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/docker/beam"
|
||||
"github.com/docker/beam/inmem"
|
||||
"github.com/docker/libswarm/beam"
|
||||
"github.com/docker/libswarm/beam/inmem"
|
||||
"io"
|
||||
"sync"
|
||||
)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package utils
|
||||
|
||||
import (
|
||||
"github.com/docker/beam"
|
||||
"github.com/docker/libswarm/beam"
|
||||
"github.com/dotcloud/docker/pkg/testutils"
|
||||
"testing"
|
||||
)
|
||||
|
|
|
@ -3,7 +3,7 @@ package utils
|
|||
import (
|
||||
"container/list"
|
||||
"fmt"
|
||||
"github.com/docker/beam"
|
||||
"github.com/docker/libswarm/beam"
|
||||
"strings"
|
||||
"sync"
|
||||
)
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
package utils
|
||||
|
||||
import (
|
||||
"github.com/docker/beam"
|
||||
"github.com/docker/beam/inmem"
|
||||
"github.com/docker/beam/unix"
|
||||
"github.com/docker/libswarm/beam"
|
||||
"github.com/docker/libswarm/beam/inmem"
|
||||
"github.com/docker/libswarm/beam/unix"
|
||||
"github.com/dotcloud/docker/pkg/testutils"
|
||||
"strings"
|
||||
"testing"
|
||||
|
|
|
@ -4,9 +4,9 @@ import (
|
|||
"bufio"
|
||||
"fmt"
|
||||
"github.com/codegangsta/cli"
|
||||
"github.com/docker/beam"
|
||||
"github.com/docker/beam/inmem"
|
||||
beamutils "github.com/docker/beam/utils"
|
||||
"github.com/docker/libswarm/beam"
|
||||
"github.com/docker/libswarm/beam/inmem"
|
||||
beamutils "github.com/docker/libswarm/beam/utils"
|
||||
"github.com/docker/libswarm/backends"
|
||||
_ "github.com/dotcloud/docker/api/server"
|
||||
"github.com/dotcloud/docker/engine"
|
||||
|
|
Loading…
Reference in New Issue