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 }