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 } 12