diff --git a/go.mod b/go.mod index 8322649..9751425 100644 --- a/go.mod +++ b/go.mod @@ -1,9 +1,9 @@ -module go-comic-converter +module github.com/celogeek/go-comic-converter go 1.19 require ( - github.com/gofrs/uuid v3.1.0+incompatible + github.com/gofrs/uuid v4.3.1+incompatible github.com/nwaples/rardecode v1.1.3 github.com/raff/pdfreader v0.0.0-20220308062436-033e8ac577f0 github.com/schollz/progressbar/v3 v3.12.2 diff --git a/go.sum b/go.sum index 4e605f3..1dc2b0b 100644 --- a/go.sum +++ b/go.sum @@ -1,8 +1,8 @@ github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/gofrs/uuid v3.1.0+incompatible h1:q2rtkjaKT4YEr6E1kamy0Ha4RtepWlQBedyHx0uzKwA= -github.com/gofrs/uuid v3.1.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= +github.com/gofrs/uuid v4.3.1+incompatible h1:0/KbAdpx3UXAx1kEOWHJeOkpbgRFGHVgv+CFIY7dBJI= +github.com/gofrs/uuid v4.3.1+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213/go.mod h1:vNUNkEQ1e29fT/6vq2aBdFsgNPmy8qMdSay1npru+Sw= github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= github.com/mattn/go-runewidth v0.0.14 h1:+xnbZSEeDbOIg5/mE6JF0w6n9duR1l3/WmbinWVwUuU= diff --git a/internal/epub/image_processing.go b/internal/epub/image_processing.go index cb91e52..c166fa2 100644 --- a/internal/epub/image_processing.go +++ b/internal/epub/image_processing.go @@ -4,7 +4,7 @@ import ( "archive/zip" "bytes" "fmt" - imageconverter "go-comic-converter/internal/image-converter" + imageconverter "github.com/celogeek/go-comic-converter/internal/image-converter" "io" "io/fs" "os" diff --git a/main.go b/main.go index 130608a..30850e2 100644 --- a/main.go +++ b/main.go @@ -3,10 +3,11 @@ package main import ( "flag" "fmt" - "go-comic-converter/internal/epub" "os" "path/filepath" "strings" + + "github.com/celogeek/go-comic-converter/internal/epub" ) type Profile struct {