mirror of
https://github.com/therootcompany/pathman.git
synced 2025-07-05 18:06:30 +00:00
16 lines
241 B
Go
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
|
|
}
|