pm/remote/pull.go
2018-03-02 23:23:04 -08:00

9 lines
155 B
Go

package remote
import "github.com/pkg/errors"
// Pull updates the available package database.
func Pull(root string) error {
return errors.New("NYI")
}