Stub out install subcommand

This commit is contained in:
sm
2018-03-03 22:33:52 -08:00
parent bc8a4a1905
commit b869bd250c
2 changed files with 19 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
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")
}