Files
lmvpn_client/internal/paths/paths_other.go
T
2026-07-06 16:21:06 +08:00

18 lines
308 B
Go

//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"),
}
}