gioui.org@v0.6.1-0.20240506124620-7a9ce51988ce/app/datadir.go (about) 1 // SPDX-License-Identifier: Unlicense OR MIT 2 3 //go:build !android 4 // +build !android 5 6 package app 7 8 import "os" 9 10 func dataDir() (string, error) { 11 return os.UserConfigDir() 12 }