feat: add local DB to save downloads

This commit is contained in:
Mathis Maquenne
2025-04-26 13:09:59 +02:00
parent 6675834842
commit f931cad746
8 changed files with 215 additions and 64 deletions
+9
View File
@@ -0,0 +1,9 @@
package utils
import "os"
func FileExists(path string) bool {
info, err := os.Stat(path)
return err == nil && !info.IsDir()
}