Files
gio-patched/app/datadir.go
T
Elias Naur 22cd88df9f all: rename the gioui.org/ui module to gioui.org
The "ui" is redundant and stutters.

Signed-off-by: Elias Naur <mail@eliasnaur.com>
2019-09-30 12:37:06 +02:00

12 lines
161 B
Go

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