Files
gio/ui/app/datadir.go
T
2019-07-07 00:39:13 +02:00

12 lines
154 B
Go

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