fckeuspy-go/vendor/fyne.io/fyne/v2/internal/app/config_other.go

13 lines
275 B
Go

//go:build ci || (mobile && !android && !ios) || (!linux && !darwin && !windows && !freebsd && !openbsd && !netbsd && !wasm && !test_web_driver)
package app
import (
"os"
"path/filepath"
)
func rootConfigDir() string {
return filepath.Join(os.TempDir(), "fyne-test")
}