1
0
mirror of https://github.com/ericchiang/pup synced 2025-01-14 17:50:59 +00:00

switched import paths for go subrepos

This commit is contained in:
ericchiang 2014-11-10 01:35:08 -05:00
parent e4043764a0
commit bc1fd77d6b
3 changed files with 5 additions and 5 deletions

View File

@ -6,8 +6,8 @@ import (
"regexp"
"strings"
"code.google.com/p/go.net/html"
"code.google.com/p/go.net/html/atom"
"golang.org/x/net/html"
"golang.org/x/net/html/atom"
"github.com/fatih/color"
"github.com/mattn/go-colorable"
)

4
pup.go
View File

@ -4,8 +4,8 @@ import (
"fmt"
"os"
"code.google.com/p/go.net/html"
"code.google.com/p/go.net/html/charset"
"golang.org/x/net/html"
"golang.org/x/net/html/charset"
)
// _=,_

View File

@ -8,7 +8,7 @@ import (
"strings"
"text/scanner"
"code.google.com/p/go.net/html"
"golang.org/x/net/html"
)
type Selector interface {