10 lines
127 B
Go
10 lines
127 B
Go
|
package xdgbase
|
||
|
|
||
|
import (
|
||
|
"github.com/apparentlymart/go-userdirs/internal/unix"
|
||
|
)
|
||
|
|
||
|
func home() string {
|
||
|
return unix.Home()
|
||
|
}
|