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 (
|
import (
|
||||||
"io"
|
"io"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/docker/beam"
|
"github.com/docker/libswarm/beam"
|
||||||
beamutils "github.com/docker/beam/utils"
|
beamutils "github.com/docker/libswarm/beam/utils"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
package inmem
|
package inmem
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/docker/beam"
|
"github.com/docker/libswarm/beam"
|
||||||
"io"
|
"io"
|
||||||
"sync"
|
"sync"
|
||||||
)
|
)
|
||||||
|
|
|
@ -2,7 +2,7 @@ package inmem
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/docker/beam"
|
"github.com/docker/libswarm/beam"
|
||||||
"github.com/dotcloud/docker/pkg/testutils"
|
"github.com/dotcloud/docker/pkg/testutils"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
|
|
|
@ -4,8 +4,8 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"github.com/docker/beam"
|
"github.com/docker/libswarm/beam"
|
||||||
"github.com/docker/beam/data"
|
"github.com/docker/libswarm/beam/data"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Pair() (*Conn, *Conn, error) {
|
func Pair() (*Conn, *Conn, error) {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
package unix
|
package unix
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/docker/beam"
|
"github.com/docker/libswarm/beam"
|
||||||
"github.com/dotcloud/docker/pkg/testutils"
|
"github.com/dotcloud/docker/pkg/testutils"
|
||||||
"testing"
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
package utils
|
package utils
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/docker/beam"
|
"github.com/docker/libswarm/beam"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Buffer []*beam.Message
|
type Buffer []*beam.Message
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
package utils
|
package utils
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/docker/beam"
|
"github.com/docker/libswarm/beam"
|
||||||
"sync"
|
"sync"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,8 @@ package utils
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/docker/beam"
|
"github.com/docker/libswarm/beam"
|
||||||
"github.com/docker/beam/inmem"
|
"github.com/docker/libswarm/beam/inmem"
|
||||||
"io"
|
"io"
|
||||||
"sync"
|
"sync"
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
package utils
|
package utils
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/docker/beam"
|
"github.com/docker/libswarm/beam"
|
||||||
"github.com/dotcloud/docker/pkg/testutils"
|
"github.com/dotcloud/docker/pkg/testutils"
|
||||||
"testing"
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
|
@ -3,7 +3,7 @@ package utils
|
||||||
import (
|
import (
|
||||||
"container/list"
|
"container/list"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/docker/beam"
|
"github.com/docker/libswarm/beam"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
package utils
|
package utils
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/docker/beam"
|
"github.com/docker/libswarm/beam"
|
||||||
"github.com/docker/beam/inmem"
|
"github.com/docker/libswarm/beam/inmem"
|
||||||
"github.com/docker/beam/unix"
|
"github.com/docker/libswarm/beam/unix"
|
||||||
"github.com/dotcloud/docker/pkg/testutils"
|
"github.com/dotcloud/docker/pkg/testutils"
|
||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
|
@ -4,9 +4,9 @@ import (
|
||||||
"bufio"
|
"bufio"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/codegangsta/cli"
|
"github.com/codegangsta/cli"
|
||||||
"github.com/docker/beam"
|
"github.com/docker/libswarm/beam"
|
||||||
"github.com/docker/beam/inmem"
|
"github.com/docker/libswarm/beam/inmem"
|
||||||
beamutils "github.com/docker/beam/utils"
|
beamutils "github.com/docker/libswarm/beam/utils"
|
||||||
"github.com/docker/libswarm/backends"
|
"github.com/docker/libswarm/backends"
|
||||||
_ "github.com/dotcloud/docker/api/server"
|
_ "github.com/dotcloud/docker/api/server"
|
||||||
"github.com/dotcloud/docker/engine"
|
"github.com/dotcloud/docker/engine"
|
||||||
|
|
Loading…
Reference in New Issue