11 lines
190 B
Go
11 lines
190 B
Go
|
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")
|
||
|
}
|