wimp-get/platform/other.go

13 lines
153 B
Go

// +build !windows
package platform
import(
"path"
)
func DirOf(filename string) (dirname string, e error) {
dirname = path.Dir(filename)
return
}