2
1
mirror of https://github.com/therootcompany/pathman.git synced 2025-07-05 18:06:30 +00:00
pathman/winpath/winpath_nonwindows.go
2019-07-28 03:55:53 -06:00

16 lines
241 B
Go

// +build !windows
package winpath
func paths() ([]string, error) {
return nil, ErrWrongPlatform
}
func add(string) (bool, error) {
return false, ErrWrongPlatform
}
func remove(string) (bool, error) {
return false, ErrWrongPlatform
}