lego/registration/user_test.go
Ludovic Fernandez 219222fdda
Use canonical imports (#822)
* fix: challenge are not required for revoke.
2019-03-11 16:54:35 +01:00

16 lines
420 B
Go

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 }