Skip to content

Commit 952c955

Browse files
Merge pull request #2 from Alexvallance/fix-gomod
Fix Go Modules Integration
2 parents a6e7596 + 78c3614 commit 952c955

Some content is hidden

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

49 files changed

+28
-9159
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.idea

Godeps/Godeps.json

Lines changed: 0 additions & 34 deletions
This file was deleted.

Godeps/Readme

Lines changed: 0 additions & 5 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A Golang SDK for Mailchimp API v3.
44

5-
[![Travis Status for RichardKnop/go-mailchimp](https://travis-ci.org/RichardKnop/go-mailchimp.svg?branch=master)](https://travis-ci.org/RichardKnop/go-mailchimp)
5+
[![Travis Status for Alexvallance/go-mailchimp](https://travis-ci.org/RichardKnop/go-mailchimp.svg?branch=master)](https://travis-ci.org/RichardKnop/go-mailchimp)
66

77
## Usage
88

@@ -12,7 +12,7 @@ package main
1212
import (
1313
"log"
1414

15-
"github.com/RichardKnop/go-mailchimp"
15+
"github.com/Alexvallance/go-mailchimp"
1616
)
1717

1818
func main() {

check_subscription_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"net/url"
88
"testing"
99

10-
mailchimp "github.com/RichardKnop/go-mailchimp"
10+
"github.com/Alexvallance/go-mailchimp"
1111
"github.com/stretchr/testify/assert"
1212
)
1313

client_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"net/url"
55
"testing"
66

7-
mailchimp "github.com/RichardKnop/go-mailchimp"
7+
"github.com/Alexvallance/go-mailchimp"
88
"github.com/stretchr/testify/assert"
99
)
1010

go.mod

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module github.com/Alexvallance/go-mailchimp
2+
3+
go 1.15
4+
5+
require (
6+
github.com/davecgh/go-spew v1.1.0 // indirect
7+
github.com/pmezard/go-difflib v1.0.0 // indirect
8+
github.com/stretchr/testify v1.1.5-0.20170526065633-eb84487caee2
9+
)

go.sum

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
2+
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3+
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
4+
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
5+
github.com/stretchr/testify v1.1.5-0.20170526065633-eb84487caee2 h1:PGpBx8w5Kct9+HTOYYmguPoJJ8Z/btQwN2v+tucSnxc=
6+
github.com/stretchr/testify v1.1.5-0.20170526065633-eb84487caee2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=

remove_subscription.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"fmt"
77
"io/ioutil"
88

9-
"github.com/RichardKnop/go-mailchimp/status"
9+
"github.com/Alexvallance/go-mailchimp/status"
1010
)
1111

1212
// UpdateSubscription ...

subscribe.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"io/ioutil"
77

8-
"github.com/RichardKnop/go-mailchimp/status"
8+
"github.com/Alexvallance/go-mailchimp/status"
99
)
1010

1111
// Subscribe ...

0 commit comments

Comments
 (0)