pm/pkg/install.go

11 lines
190 B
Go
Raw Normal View History

2018-03-03 21:28:24 -08:00
package pkg
import (
"github.com/pkg/errors"
)
// Install fetches and installs pkgs from appropriate remotes.
func Install(root string, pkgs []string) error {
return errors.New("NYI")
}