Change imports to use embedded beam version

Signed-off-by: Solomon Hykes <solomon@docker.com>
This commit is contained in:
Solomon Hykes 2014-06-02 00:04:08 +00:00
parent 91ae1d7353
commit 8a8e36e364
12 changed files with 19 additions and 19 deletions

View File

@ -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"

View File

@ -1,7 +1,7 @@
package inmem
import (
"github.com/docker/beam"
"github.com/docker/libswarm/beam"
"io"
"sync"
)

View File

@ -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"

View File

@ -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) {

View File

@ -1,7 +1,7 @@
package unix
import (
"github.com/docker/beam"
"github.com/docker/libswarm/beam"
"github.com/dotcloud/docker/pkg/testutils"
"testing"
)

View File

@ -1,7 +1,7 @@
package utils
import (
"github.com/docker/beam"
"github.com/docker/libswarm/beam"
)
type Buffer []*beam.Message

View File

@ -1,7 +1,7 @@
package utils
import (
"github.com/docker/beam"
"github.com/docker/libswarm/beam"
"sync"
)

View File

@ -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"
)

View File

@ -1,7 +1,7 @@
package utils
import (
"github.com/docker/beam"
"github.com/docker/libswarm/beam"
"github.com/dotcloud/docker/pkg/testutils"
"testing"
)

View File

@ -3,7 +3,7 @@ package utils
import (
"container/list"
"fmt"
"github.com/docker/beam"
"github.com/docker/libswarm/beam"
"strings"
"sync"
)

View File

@ -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"

View File

@ -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"