Skip to content

Commit

Permalink
fix(config) : rename to cli-template
Browse files Browse the repository at this point in the history
  • Loading branch information
LordPax committed Aug 11, 2024
1 parent 0a391c0 commit fe7fa86
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,11 @@ var (
CONFIG_DIR = path.Join(home, ".config", "cli-template")
CONFIG_FILE = path.Join(CONFIG_DIR, "config")
LOG_FILE = path.Join(CONFIG_DIR, "log")
AVAILABLE_EXT = []string{"jpg", "jpeg", "png", "webp"}
CONFIG_EXEMPLE = `# Configuration file for scan2epub`
CONFIG_EXEMPLE = `# Configuration file for cli-template`
)

func InitConfig() error {
tmpName, err := os.MkdirTemp("", "scan2epub")
tmpName, err := os.MkdirTemp("", "cli-template")
if err != nil {
return err
}
Expand Down

0 comments on commit fe7fa86

Please sign in to comment.