mirror of
https://github.com/celogeek/go-comic-converter.git
synced 2025-05-24 15:52:38 +02:00
9 lines
252 B
Go
9 lines
252 B
Go
package epubimageprocessor
|
|
|
|
import "github.com/celogeek/go-comic-converter/v3/internal/pkg/epubimage"
|
|
|
|
func (e EPUBImageProcessor) PassThrough() (images []epubimage.EPUBImage, err error) {
|
|
images = make([]epubimage.EPUBImage, 0)
|
|
return images, nil
|
|
}
|