9 lines
155 B
Go
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")
|
||
|
}
|