Stubs out passing args to keyring creation

This commit is contained in:
sm
2018-02-25 20:10:03 -08:00
parent ea383b7a34
commit d333acfdbd
2 changed files with 12 additions and 2 deletions
+7
View File
@@ -0,0 +1,7 @@
package keyring
import "fmt"
func NewKeyPair(root, name, email string) error {
return fmt.Errorf("NYI: %v, %v, %v", root, name, email)
}