1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00
cowyo/vendor/github.com/shurcooL/go/gopathutil/stub.go

13 lines
413 B
Go
Raw Normal View History

2017-10-03 21:43:55 +03:00
package gopathutil
import "errors"
// RemoveRepo removes go-gettable repo with no local changes (by moving it into trash).
// importPathPattern must match exactly with the repo root.
// For example, "github.com/user/repo/...".
//
// It's currently not implemented.
func RemoveRepo(importPathPattern string) error {
return errors.New("not implemented: RemoveRepo needs to be updated to use new dependencies")
}