make epub package public

This commit is contained in:
Celogeek 2024-01-04 16:43:14 +01:00
parent d57e034483
commit 98aa128f3e
Signed by: celogeek
SSH Key Fingerprint: SHA256:DEDfxIK2nUWXbslbRkww3zsauDjhWHlTXar+ak4lDJ4
25 changed files with 17 additions and 17 deletions

View File

@ -14,8 +14,8 @@ import (
"runtime/debug" "runtime/debug"
"github.com/celogeek/go-comic-converter/v2/internal/converter" "github.com/celogeek/go-comic-converter/v2/internal/converter"
"github.com/celogeek/go-comic-converter/v2/internal/epub" "github.com/celogeek/go-comic-converter/v2/pkg/epub"
epuboptions "github.com/celogeek/go-comic-converter/v2/internal/epub/options" epuboptions "github.com/celogeek/go-comic-converter/v2/pkg/epub/options"
"github.com/tcnksm/go-latest" "github.com/tcnksm/go-latest"
) )

View File

@ -15,13 +15,13 @@ import (
"text/template" "text/template"
"time" "time"
epubimage "github.com/celogeek/go-comic-converter/v2/internal/epub/image" epubimage "github.com/celogeek/go-comic-converter/v2/pkg/epub/image"
epubimageprocessor "github.com/celogeek/go-comic-converter/v2/internal/epub/imageprocessor" epubimageprocessor "github.com/celogeek/go-comic-converter/v2/pkg/epub/imageprocessor"
epuboptions "github.com/celogeek/go-comic-converter/v2/internal/epub/options" epuboptions "github.com/celogeek/go-comic-converter/v2/pkg/epub/options"
epubprogress "github.com/celogeek/go-comic-converter/v2/internal/epub/progress" epubprogress "github.com/celogeek/go-comic-converter/v2/pkg/epub/progress"
epubtemplates "github.com/celogeek/go-comic-converter/v2/internal/epub/templates" epubtemplates "github.com/celogeek/go-comic-converter/v2/pkg/epub/templates"
epubtree "github.com/celogeek/go-comic-converter/v2/internal/epub/tree" epubtree "github.com/celogeek/go-comic-converter/v2/pkg/epub/tree"
epubzip "github.com/celogeek/go-comic-converter/v2/internal/epub/zip" epubzip "github.com/celogeek/go-comic-converter/v2/pkg/epub/zip"
"github.com/gofrs/uuid" "github.com/gofrs/uuid"
) )

View File

@ -11,11 +11,11 @@ import (
"os" "os"
"sync" "sync"
epubimage "github.com/celogeek/go-comic-converter/v2/internal/epub/image" epubimage "github.com/celogeek/go-comic-converter/v2/pkg/epub/image"
epubimagefilters "github.com/celogeek/go-comic-converter/v2/internal/epub/imagefilters" epubimagefilters "github.com/celogeek/go-comic-converter/v2/pkg/epub/imagefilters"
epuboptions "github.com/celogeek/go-comic-converter/v2/internal/epub/options" epuboptions "github.com/celogeek/go-comic-converter/v2/pkg/epub/options"
epubprogress "github.com/celogeek/go-comic-converter/v2/internal/epub/progress" epubprogress "github.com/celogeek/go-comic-converter/v2/pkg/epub/progress"
epubzip "github.com/celogeek/go-comic-converter/v2/internal/epub/zip" epubzip "github.com/celogeek/go-comic-converter/v2/pkg/epub/zip"
"github.com/disintegration/gift" "github.com/disintegration/gift"
) )

View File

@ -4,8 +4,8 @@ import (
"fmt" "fmt"
"github.com/beevik/etree" "github.com/beevik/etree"
epubimage "github.com/celogeek/go-comic-converter/v2/internal/epub/image" epubimage "github.com/celogeek/go-comic-converter/v2/pkg/epub/image"
epuboptions "github.com/celogeek/go-comic-converter/v2/internal/epub/options" epuboptions "github.com/celogeek/go-comic-converter/v2/pkg/epub/options"
) )
type ContentOptions struct { type ContentOptions struct {

View File

@ -5,7 +5,7 @@ import (
"strings" "strings"
"github.com/beevik/etree" "github.com/beevik/etree"
epubimage "github.com/celogeek/go-comic-converter/v2/internal/epub/image" epubimage "github.com/celogeek/go-comic-converter/v2/pkg/epub/image"
) )
// create toc // create toc