Skip to content

Commit 75137db

Browse files
committed
updated import paths
1 parent e45b019 commit 75137db

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+73
-73
lines changed

cluster/era.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package cluster
22

33
import (
44
"github.com/cloudflare/golog/logger"
5-
"stash.cloudflare.com/go-stream/util/slog"
5+
"github.com/cloudflare/go-stream/util/slog"
66
)
77

88
type Era interface {

cluster/manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"github.com/cloudflare/golog/logger"
66
"io/ioutil"
77
"net/http"
8-
"stash.cloudflare.com/go-stream/util/slog"
8+
"github.com/cloudflare/go-stream/util/slog"
99
"strconv"
1010
"time"
1111
)

cube/aggregate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package cube
22

33
import (
4-
"stash.cloudflare.com/go-stream/cube/pg/hll"
4+
"github.com/cloudflare/go-stream/cube/pg/hll"
55
)
66

77
type Aggregate interface {

cube/dimension.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package cube
22

33
import (
4-
"stash.cloudflare.com/go-stream/cube/pg/hll"
4+
"github.com/cloudflare/go-stream/cube/pg/hll"
55
"time"
66
)
77

cube/operator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package cube
22

33
import (
4-
"stash.cloudflare.com/go-stream/stream"
4+
"github.com/cloudflare/go-stream/stream"
55
// "reflect"
66
"time"
77
)

cube/pg/cube.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package pg
22

3-
import "stash.cloudflare.com/go-stream/cube"
3+
import "github.com/cloudflare/go-stream/cube"
44
import (
55
"log"
66
"reflect"

cube/pg/executor.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"github.com/cevian/pq"
66
"github.com/cloudflare/golog/logger"
77
"reflect"
8-
"stash.cloudflare.com/go-stream/cube"
9-
"stash.cloudflare.com/go-stream/util/slog"
8+
"github.com/cloudflare/go-stream/cube"
9+
"github.com/cloudflare/go-stream/util/slog"
1010
)
1111

1212
type Executor struct {

cube/pg/operator.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package pg
22

3-
import "stash.cloudflare.com/go-stream/cube"
4-
import "stash.cloudflare.com/go-stream/stream"
5-
import "stash.cloudflare.com/go-stream/stream/mapper"
3+
import "github.com/cloudflare/go-stream/cube"
4+
import "github.com/cloudflare/go-stream/stream"
5+
import "github.com/cloudflare/go-stream/stream/mapper"
66

77
import (
88
"database/sql"

cube/pg/table.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
//"database/sql"
77
"fmt"
88
"reflect"
9-
"stash.cloudflare.com/go-stream/cube"
9+
"github.com/cloudflare/go-stream/cube"
1010
"strings"
1111
"time"
1212
)

cube/pg/table_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package pg
33
import (
44
"database/sql"
55
"database/sql/driver"
6-
"stash.cloudflare.com/go-stream/cube"
6+
"github.com/cloudflare/go-stream/cube"
77
"fmt"
88
"log"
99
"time"

0 commit comments

Comments
 (0)