update package name

This commit is contained in:
Celogeek 2022-12-30 14:46:02 +01:00
parent b7c783aec5
commit 06c883307f
Signed by: celogeek
GPG Key ID: E6B7BDCFC446233A
4 changed files with 7 additions and 6 deletions

4
go.mod
View File

@ -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

4
go.sum
View File

@ -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=

View File

@ -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"

View File

@ -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 {