Skip to content

Commit

Permalink
Update imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
alecthomas committed Mar 29, 2016
1 parent aac76de commit 947ebc4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions examples/scribe_client/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"net"

"github.com/samuel/go-thrift/examples/scribe"
"github.com/samuel/go-thrift/thrift"
"github.com/alecthomas/go-thrift/examples/scribe"
"github.com/alecthomas/go-thrift/thrift"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions examples/scribe_server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"net"
"net/rpc"

"github.com/samuel/go-thrift/examples/scribe"
"github.com/samuel/go-thrift/thrift"
"github.com/alecthomas/go-thrift/examples/scribe"
"github.com/alecthomas/go-thrift/thrift"
)

// implementation
Expand Down
2 changes: 1 addition & 1 deletion generator/go.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"strconv"
"strings"

"github.com/samuel/go-thrift/parser"
"github.com/alecthomas/go-thrift/parser"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion generator/go_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"path/filepath"
"testing"

"github.com/samuel/go-thrift/parser"
"github.com/alecthomas/go-thrift/parser"
)

func TestSimple(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions generator/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
"sort"
"strings"

"github.com/samuel/go-thrift/parser"
"github.com/samuel/go-thrift/thrift"
"github.com/alecthomas/go-thrift/parser"
"github.com/alecthomas/go-thrift/thrift"
)

func camelCase(st string) string {
Expand Down

0 comments on commit 947ebc4

Please sign in to comment.