Files
silver_pose/v2/vendor/gioui.org/app/datadir.go
T

12 lines
155 B
Go
Raw Normal View History

// SPDX-License-Identifier: Unlicense OR MIT
//go:build !android
package app
import "os"
func dataDir() (string, error) {
return os.UserConfigDir()
}