Files
gio/app/datadir.go
Elias Naur 060ae1cdf9 all: add //go:build lines
They're automatically added by Go 1.17 source formatters. This change
adds them all now.

Signed-off-by: Elias Naur <mail@eliasnaur.com>
2021-07-26 15:17:51 +02:00

13 lines
174 B
Go

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