github.com/cybriq/giocore@v0.0.7-0.20210703034601-cfb9cb5f3900/app/datadir.go (about) 1 // SPDX-License-Identifier: Unlicense OR MIT 2 3 // +build !android 4 5 package app 6 7 import "os" 8 9 func dataDir() (string, error) { 10 return os.UserConfigDir() 11 }