Upload of project source code files.

This commit is contained in:
2026-02-17 04:01:29 +01:00
parent 8eee3bb938
commit 38704ce1ad
76 changed files with 257 additions and 0 deletions

14
utils/utils.go Normal file
View File

@@ -0,0 +1,14 @@
package utils
import "os"
var AppData string = os.Getenv("APPDATA")
var LocalAppData string = os.Getenv("LOCALAPPDATA")
func FileOrDirExists(path string) bool {
_, err := os.Stat(path)
if os.IsNotExist(err) {
return false
}
return true
}