1
0
mirror of https://github.com/go-acme/lego.git synced 2024-12-05 03:58:54 +02:00
lego/registration/user_test.go

17 lines
420 B
Go
Raw Normal View History

package registration // import "github.com/xenolf/lego/registration"
import (
"crypto"
"crypto/rsa"
)
type mockUser struct {
email string
regres *Resource
privatekey *rsa.PrivateKey
}
func (u mockUser) GetEmail() string { return u.email }
func (u mockUser) GetRegistration() *Resource { return u.regres }
func (u mockUser) GetPrivateKey() crypto.PrivateKey { return u.privatekey }