Stub out pm package create

This commit is contained in:
sm
2018-02-27 20:47:04 -08:00
parent 0cee922f12
commit 13ab26491b
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)
}