Skip to content

Commit

Permalink
change package import path
Browse files Browse the repository at this point in the history
  • Loading branch information
gee-m committed Aug 10, 2016
1 parent babb9cd commit 5c04068
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion customer.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package braintree

import "github.com/lionelbarrow/braintree-go/nullable"
import "github.com/processout/braintree-go/nullable"

type Customer struct {
XMLName string `xml:"customer"`
Expand Down
2 changes: 1 addition & 1 deletion customer_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package braintree
import (
"testing"

"github.com/lionelbarrow/braintree-go/testhelpers"
"github.com/processout/braintree-go/testhelpers"
)

// This test will fail unless you set up your Braintree sandbox account correctly. See TESTING.md for details.
Expand Down
3 changes: 2 additions & 1 deletion disbursement.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ package braintree

import (
"encoding/xml"
"github.com/lionelbarrow/braintree-go/date"

"github.com/processout/braintree-go/date"
)

type Disbursement struct {
Expand Down
3 changes: 2 additions & 1 deletion disbursement_details.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ package braintree

import (
"encoding/xml"
"github.com/lionelbarrow/braintree-go/nullable"

"github.com/processout/braintree-go/nullable"
)

type DisbursementDetails struct {
Expand Down
2 changes: 1 addition & 1 deletion examples/subscription/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"net/http"
"os"

"github.com/lionelbarrow/braintree-go"
"github.com/processout/braintree-go"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/transaction/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"net/http"
"os"

"github.com/lionelbarrow/braintree-go"
"github.com/processout/braintree-go"
)

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

"github.com/lionelbarrow/braintree-go/testhelpers"
"github.com/processout/braintree-go/testhelpers"
)

var acctId string
Expand Down
3 changes: 2 additions & 1 deletion plan.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
package braintree

import (
"github.com/lionelbarrow/braintree-go/nullable"
"time"

"github.com/processout/braintree-go/nullable"
)

type Plan struct {
Expand Down
2 changes: 1 addition & 1 deletion subscription.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package braintree

import "github.com/lionelbarrow/braintree-go/nullable"
import "github.com/processout/braintree-go/nullable"

const (
SubscriptionStatusActive = "Active"
Expand Down
2 changes: 1 addition & 1 deletion transaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package braintree
import (
"time"

"github.com/lionelbarrow/braintree-go/nullable"
"github.com/processout/braintree-go/nullable"
)

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

"github.com/lionelbarrow/braintree-go/testhelpers"
"github.com/processout/braintree-go/testhelpers"
)

func randomAmount() *Decimal {
Expand Down

0 comments on commit 5c04068

Please sign in to comment.