fix font error

This commit is contained in:
2025-04-20 02:13:59 +10:00
parent 6028e7d8c2
commit 9d1d3f0f17
8 changed files with 115 additions and 14 deletions

View File

@@ -1,7 +1,7 @@
package cmd
import (
"bilinovel-downloader/utils"
"bilinovel-downloader/downloader/bilinovel"
"fmt"
"github.com/spf13/cobra"
@@ -28,7 +28,7 @@ func init() {
}
func runPackage(cmd *cobra.Command, args []string) error {
err := utils.CreateEpub(pArgs.DirPath)
err := bilinovel.CreateEpub(pArgs.DirPath)
if err != nil {
return fmt.Errorf("failed to create epub: %v", err)
}