8 lines
140 B
Go
8 lines
140 B
Go
|
package keyring
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
func NewKeyPair(root, name, email string) error {
|
||
|
return fmt.Errorf("NYI: %v, %v, %v", root, name, email)
|
||
|
}
|