fs storage

This commit is contained in:
Ilia Denisov
2026-03-13 21:07:23 +02:00
committed by GitHub
parent 43039a79bf
commit 9ade76e21d
117 changed files with 1734 additions and 176 deletions
-8
View File
@@ -4,8 +4,6 @@ import (
"galaxy/connector"
"runtime"
"slices"
"fyne.io/fyne/v2"
)
func resolvePluginFile(version string) string {
@@ -25,9 +23,3 @@ func latestVersion(versions []connector.VersionInfo) (connector.VersionInfo, boo
slices.SortFunc(versions, func(a, b connector.VersionInfo) int { return compareSemver(b.Version, a.Version) })
return versions[0], true
}
// initStorage returns filesystem storage root or error if initialization fails.
func initStorage(app fyne.App) (string, error) {
_ = app.Storage() // use fyne.App's Storage
return "", nil
}