Stub out pm package create

This commit is contained in:
sm
2018-02-26 19:58:28 -08:00
parent e043384c67
commit 2ec42dd61c
2 changed files with 37 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
package pkg
import "fmt"
// Create traverses the contents of dir and emits a valid pkg, signed by id
func Create(dir, id string) error {
return fmt.Errorf("creating package from %q for %q: NYI", dir, id)
}