forked from joejulian/gio
22cd88df9f
The "ui" is redundant and stutters. Signed-off-by: Elias Naur <mail@eliasnaur.com>
13 lines
217 B
Go
13 lines
217 B
Go
// SPDX-License-Identifier: Unlicense OR MIT
|
|
|
|
// +build !android,!go1.13
|
|
|
|
package app
|
|
|
|
import "os"
|
|
|
|
func dataDir() (string, error) {
|
|
// Use a quick workaround until we can require go 1.13.
|
|
return os.UserHomeDir()
|
|
}
|