Underscore separator for build constraint file

This commit is contained in:
Sasha Koshka 2024-04-29 16:22:50 -04:00
parent 5fafe7ccb7
commit 817ceb100a

16
path_unix.go Normal file
View File

@ -0,0 +1,16 @@
//go:build unix && !darwin
package nasin
import "git.tebibyte.media/tomo/xdg/basedir"
func userDataDir () (string, error) {
return basedir.DataHome()
}
func userConfigDir () (string, error) {
return basedir.ConfigHome()
}
func userCacheDir () (string, error) {
return basedir.CacheHome()
}