diff --git a/cmd/get.go b/cmd/get.go index a0a18b9..c7752b2 100644 --- a/cmd/get.go +++ b/cmd/get.go @@ -12,7 +12,7 @@ import ( epub "github.com/bmaupin/go-epub" cobra "github.com/spf13/cobra" - "papeer/book" + "github.com/papeer/book" ) var quiet, stdout, recursive, include bool diff --git a/cmd/list.go b/cmd/list.go index 49b8ddf..71082ea 100644 --- a/cmd/list.go +++ b/cmd/list.go @@ -26,7 +26,7 @@ var listCmd = &cobra.Command{ classesLinks := map[string][]map[string]string{} classesCount := map[string]int{} classMax := "" - + c.OnHTML(selector, func(e *colly.HTMLElement) { href := e.Attr("href") text := strings.TrimSpace(e.Text) diff --git a/main.go b/main.go index dbb051e..af01f6d 100644 --- a/main.go +++ b/main.go @@ -1,7 +1,7 @@ package main import ( - "papeer/cmd" + "github.com/lapwat/papeer/cmd" ) func main() {