update package references

This commit is contained in:
lapwat
2021-09-14 22:51:08 +02:00
parent 3857de3d87
commit 3f6dcd8aa0
3 changed files with 3 additions and 3 deletions

View File

@@ -12,7 +12,7 @@ import (
epub "github.com/bmaupin/go-epub" epub "github.com/bmaupin/go-epub"
cobra "github.com/spf13/cobra" cobra "github.com/spf13/cobra"
"papeer/book" "github.com/papeer/book"
) )
var quiet, stdout, recursive, include bool var quiet, stdout, recursive, include bool

View File

@@ -26,7 +26,7 @@ var listCmd = &cobra.Command{
classesLinks := map[string][]map[string]string{} classesLinks := map[string][]map[string]string{}
classesCount := map[string]int{} classesCount := map[string]int{}
classMax := "" classMax := ""
c.OnHTML(selector, func(e *colly.HTMLElement) { c.OnHTML(selector, func(e *colly.HTMLElement) {
href := e.Attr("href") href := e.Attr("href")
text := strings.TrimSpace(e.Text) text := strings.TrimSpace(e.Text)

View File

@@ -1,7 +1,7 @@
package main package main
import ( import (
"papeer/cmd" "github.com/lapwat/papeer/cmd"
) )
func main() { func main() {