Skip to content

Commit 051af19

Browse files
authored
Merge pull request #413 from sky126/master
Update go.mod github.com/gocolly/colly/v2
2 parents e910bad + 0b194cd commit 051af19

File tree

35 files changed

+41
-40
lines changed

35 files changed

+41
-40
lines changed

_examples/basic/basic.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"fmt"
55

6-
"github.com/gocolly/colly"
6+
"github.com/gocolly/colly/v2"
77
)
88

99
func main() {

_examples/coursera_courses/coursera_courses.go

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

9-
"github.com/gocolly/colly"
9+
"github.com/gocolly/colly/v2"
1010
)
1111

1212
// Course stores information about a coursera course

_examples/cryptocoinmarketcap/cryptocoinmarketcap.go

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

8-
"github.com/gocolly/colly"
8+
"github.com/gocolly/colly/v2"
99
)
1010

1111
func main() {

_examples/error_handling/error_handling.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"fmt"
55

6-
"github.com/gocolly/colly"
6+
"github.com/gocolly/colly/v2"
77
)
88

99
func main() {

_examples/factba.se/factbase.go

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

9-
"github.com/gocolly/colly"
9+
"github.com/gocolly/colly/v2"
1010
)
1111

1212
var baseSearchURL = "https://factba.se/json/json-transcript.php?q=&f=&dt=&p="

_examples/google_groups/google_groups.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"os"
88
"strings"
99

10-
"github.com/gocolly/colly"
10+
"github.com/gocolly/colly/v2"
1111
)
1212

1313
// Mail is the container of a single e-mail

_examples/hackernews_comments/hackernews_comments.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"strconv"
99
"strings"
1010

11-
"github.com/gocolly/colly"
11+
"github.com/gocolly/colly/v2"
1212
)
1313

1414
type comment struct {

_examples/instagram/instagram.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"regexp"
1111
"strings"
1212

13-
"github.com/gocolly/colly"
13+
"github.com/gocolly/colly/v2"
1414
)
1515

1616
// "id": user id, "after": end cursor

_examples/local_files/local_files.go

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

9-
"github.com/gocolly/colly"
9+
"github.com/gocolly/colly/v2"
1010
)
1111

1212
func main() {

_examples/login/login.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"log"
55

6-
"github.com/gocolly/colly"
6+
"github.com/gocolly/colly/v2"
77
)
88

99
func main() {

0 commit comments

Comments
 (0)