mirror of
https://github.com/celogeek/go-comic-converter.git
synced 2025-05-25 00:02:37 +02:00
11 lines
238 B
Go
11 lines
238 B
Go
package epub
|
|
|
|
import (
|
|
"github.com/celogeek/go-comic-converter/v2/internal/epub"
|
|
"github.com/celogeek/go-comic-converter/v2/pkg/epuboptions"
|
|
)
|
|
|
|
func Generate(options *epuboptions.EPUBOptions) error {
|
|
return epub.New(options).Write()
|
|
}
|