Fixed issues with renamed module.

This commit is contained in:
2024-12-31 03:40:07 -07:00
parent b4e9727e8c
commit 974fa024a1
8 changed files with 39 additions and 35 deletions
+2 -2
View File
@@ -2,9 +2,9 @@ package main
import (
"github.com/urfave/cli/v2"
"go-opds-pse/app/cmd"
"log"
"mime"
"opds-pse-server/app/cmd"
"os"
)
@@ -14,7 +14,7 @@ func main() {
app := cli.NewApp()
app.Name = "go-opds-pse"
app.Usage = "A lightweight OPDS server with PSE support."
app.Version = "0.0.1+dev"
app.Version = "1.0.0+dev"
app.Flags = []cli.Flag{
cmd.StringFlag("manga, m", "manga", "default manga folder"),
}