Files

12 lines
155 B
Go
Raw Permalink Normal View History

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