mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 15:45:38 +00:00
112368a2e3
o.UserConfigDir is introduced in Go 1.13, which is not released yet. Add a Go 1.12 stopgab until then. Signed-off-by: Elias Naur <mail@eliasnaur.com>
12 lines
161 B
Go
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()
|
|
}
|