feat: search

This commit is contained in:
Evan Buss
2024-07-13 17:16:38 +00:00
parent 4f3948943a
commit 9094e780d0
8 changed files with 122 additions and 85 deletions

View File

@@ -1,7 +1,6 @@
package convert
import (
"fmt"
"os/exec"
"path/filepath"
"strings"
@@ -16,7 +15,6 @@ type KepubConverter struct {
func (kc *KepubConverter) Available() bool {
kc.availableOnce.Do(func() {
fmt.Println("TEST")
path, err := exec.LookPath("kepubify")
kc.available = err == nil && path != ""
})