This commit is contained in:
2026-07-06 16:21:06 +08:00
commit bb9f685221
41 changed files with 4333 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
//go:build !darwin
package paths
import (
"os"
"path/filepath"
)
func init() {
home, _ := os.UserHomeDir()
Paths = Dirs{
Data: filepath.Join(home, ".local", "share", BundleID),
Cache: filepath.Join(home, ".cache", BundleID),
Log: filepath.Join(home, ".local", "state", BundleID, "log"),
}
}