Update Lego
This commit is contained in:
parent
fc8c24e987
commit
9b2423aaba
192 changed files with 11105 additions and 8535 deletions
13
vendor/github.com/xenolf/lego/registration/user.go
generated
vendored
Normal file
13
vendor/github.com/xenolf/lego/registration/user.go
generated
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
package registration
|
||||
|
||||
import (
|
||||
"crypto"
|
||||
)
|
||||
|
||||
// User interface is to be implemented by users of this library.
|
||||
// It is used by the client type to get user specific information.
|
||||
type User interface {
|
||||
GetEmail() string
|
||||
GetRegistration() *Resource
|
||||
GetPrivateKey() crypto.PrivateKey
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue