Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions profile/profile.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package profile

import (
"github.com/mitchellh/go-bnet"
"github.com/mitchellh/go-bnet/sc2"
"github.com/mitchellh/go-bnet/wow"
"github.com/nmccrory/go-bnet"
"github.com/nmccrory/go-bnet/sc2"
"github.com/nmccrory/go-bnet/wow"
)

// ProfileService has OAuth Profile APIs. See Client.
Expand Down
4 changes: 2 additions & 2 deletions profile/profile_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import(
"net/http"
"testing"
"reflect"
"github.com/mitchellh/go-bnet/sc2"
"github.com/mitchellh/go-bnet/wow"
"github.com/nmccrory/go-bnet/sc2"
"github.com/nmccrory/go-bnet/wow"
)

const sc2ProfileResp = `{ "characters":
Expand Down
2 changes: 1 addition & 1 deletion sc2/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"
"net/http"
"net/url"
"github.com/mitchellh/go-bnet"
"github.com/nmccrory/go-bnet"
)

const (
Expand Down
4 changes: 0 additions & 4 deletions sc2/sc2.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
package sc2

import (
"github.com/mitchellh/go-bnet"
)

// TODO: Create a 'Campaign' struct to represent a character's campaign progress.

// CharacterImage is a character's portrait or avatar.
Expand Down
2 changes: 1 addition & 1 deletion wow/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"
"net/http"
"net/url"
"github.com/mitchellh/go-bnet"
"github.com/nmccrory/go-bnet"
)

const (
Expand Down