mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 07:35:40 +00:00
fda6fbcf84
Signed-off-by: Elias Naur <mail@eliasnaur.com>
12 lines
154 B
Go
12 lines
154 B
Go
// SPDX-License-Identifier: Unlicense OR MIT
|
|
|
|
// +build !android
|
|
|
|
package app
|
|
|
|
import "os"
|
|
|
|
func dataDir() (string, error) {
|
|
return os.UserConfigDir()
|
|
}
|