Underscore separator for build constraint file
This commit is contained in:
parent
5fafe7ccb7
commit
817ceb100a
16
path_unix.go
Normal file
16
path_unix.go
Normal 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()
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user