Skip to content

Commit

Permalink
Update paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabrizio Mirabito committed Aug 28, 2019
1 parent d3e158f commit 735472b
Show file tree
Hide file tree
Showing 22 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion management/branding_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package management

import (
"gopkg.in/auth0.v1"
"github.com/bcmi-labs/auth0"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion management/client_grant.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package management
import (
"encoding/json"

"gopkg.in/auth0.v1"
"github.com/bcmi-labs/auth0"
)

type ClientGrant struct {
Expand Down
2 changes: 1 addition & 1 deletion management/client_grant_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"
"time"

"gopkg.in/auth0.v1"
"github.com/bcmi-labs/auth0"
)

func TestClientGrant(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion management/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"testing"
"time"

"gopkg.in/auth0.v1"
"github.com/bcmi-labs/auth0"
)

func TestClient(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion management/connection_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"
"time"

"gopkg.in/auth0.v1"
"github.com/bcmi-labs/auth0"
)

func TestConnection(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion management/custom_domain_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"net/http"
"testing"

"gopkg.in/auth0.v1"
"github.com/bcmi-labs/auth0"
)

func TestCustomDomain(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion management/email_template_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"net/http"
"testing"

"gopkg.in/auth0.v1"
"github.com/bcmi-labs/auth0"
)

func TestEmailTemplate(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion management/email_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package management
import (
"testing"

"gopkg.in/auth0.v1"
"github.com/bcmi-labs/auth0"
)

func TestEmail(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions management/example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"os"

"gopkg.in/auth0.v1"
"gopkg.in/auth0.v1/management"
"github.com/bcmi-labs/auth0"
"github.com/bcmi-labs/auth0/management"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion management/job.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strconv"
"time"

"gopkg.in/auth0.v1"
"github.com/bcmi-labs/auth0"
)

type Job struct {
Expand Down
2 changes: 1 addition & 1 deletion management/job_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package management
import (
"testing"

"gopkg.in/auth0.v1"
"github.com/bcmi-labs/auth0"
)

func TestJob(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion management/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"time"

"gopkg.in/auth0.v1"
"github.com/bcmi-labs/auth0"
)

var logTypeName = map[string]string{
Expand Down
2 changes: 1 addition & 1 deletion management/log_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package management
import (
"testing"

"gopkg.in/auth0.v1"
"github.com/bcmi-labs/auth0"
)

func TestLog(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion management/management.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"strings"
"time"

"gopkg.in/auth0.v1/internal/client"
"github.com/bcmi-labs/auth0/internal/client"
)

// Management is an Auth0 management client used to interact with the Auth0
Expand Down
2 changes: 1 addition & 1 deletion management/resource_server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"
"time"

"gopkg.in/auth0.v1"
"github.com/bcmi-labs/auth0"
)

func TestResourceServer(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion management/role_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"
"time"

"gopkg.in/auth0.v1"
"github.com/bcmi-labs/auth0"
)

func TestRole(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion management/rule_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package management
import (
"encoding/json"

"gopkg.in/auth0.v1"
"github.com/bcmi-labs/auth0"
)

type RuleConfig struct {
Expand Down
2 changes: 1 addition & 1 deletion management/rule_config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package management
import (
"testing"

"gopkg.in/auth0.v1"
"github.com/bcmi-labs/auth0"
)

func TestRuleConfig(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion management/rule_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package management
import (
"testing"

"gopkg.in/auth0.v1"
"github.com/bcmi-labs/auth0"
)

func TestRule(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion management/tenant_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package management
import (
"testing"

"gopkg.in/auth0.v1"
"github.com/bcmi-labs/auth0"
)

func TestTenant(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion management/ticket_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package management
import (
"testing"

"gopkg.in/auth0.v1"
"github.com/bcmi-labs/auth0"
)

func TestTicket(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion management/user_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package management
import (
"testing"

"gopkg.in/auth0.v1"
"github.com/bcmi-labs/auth0"
)

func TestUser(t *testing.T) {
Expand Down

0 comments on commit 735472b

Please sign in to comment.