File tree Expand file tree Collapse file tree 6 files changed +8
-8
lines changed
Expand file tree Collapse file tree 6 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ This library is particularly useful for applications requiring detailed metadata
2828Add the library to your project using ` go get ` :
2929
3030``` sh
31- go get github.com/mathieu-keller/epub-parser
31+ go get github.com/mathieu-keller/epub-parser/v2
3232```
3333
3434---
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package epub_v2
22
33import (
44 "encoding/xml"
5- "github.com/mathieu-keller/epub-parser/model"
5+ "github.com/mathieu-keller/epub-parser/v2/ model"
66)
77
88func getTitles (metaData []DefaultAttributes ) * []model.Title {
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package epub_v3
22
33import (
44 "encoding/xml"
5- "github.com/mathieu-keller/epub-parser/model"
5+ "github.com/mathieu-keller/epub-parser/v2/ model"
66 "strings"
77)
88
Original file line number Diff line number Diff line change 1- module github.com/mathieu-keller/epub-parser
1+ module github.com/mathieu-keller/epub-parser/v2
22
33go 1.23
44
Original file line number Diff line number Diff line change 55 "fmt"
66 "strconv"
77
8- "github.com/mathieu-keller/epub-parser/epub_v2"
9- "github.com/mathieu-keller/epub-parser/epub_v3"
10- "github.com/mathieu-keller/epub-parser/model"
8+ "github.com/mathieu-keller/epub-parser/v2/ epub_v2"
9+ "github.com/mathieu-keller/epub-parser/v2/ epub_v3"
10+ "github.com/mathieu-keller/epub-parser/v2/ model"
1111)
1212
1313func OpenBook (reader * zip.Reader ) (* model.Book , error ) {
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package epub
33import (
44 "archive/zip"
55 "bytes"
6- "github.com/mathieu-keller/epub-parser/model"
6+ "github.com/mathieu-keller/epub-parser/v2/ model"
77 "os"
88 "strconv"
99 "testing"
You can’t perform that action at this time.
0 commit comments