19 lines
538 B
Go
19 lines
538 B
Go
|
package acme
|
||
|
|
||
|
// StoredData represents the data managed by the Store
|
||
|
type StoredData struct {
|
||
|
Account *Account
|
||
|
Certificates []*Certificate
|
||
|
HTTPChallenges map[string]map[string][]byte
|
||
|
}
|
||
|
|
||
|
// Store is a generic interface to represents a storage
|
||
|
type Store interface {
|
||
|
GetAccount() (*Account, error)
|
||
|
SaveAccount(*Account) error
|
||
|
GetCertificates() ([]*Certificate, error)
|
||
|
SaveCertificates([]*Certificate) error
|
||
|
GetHTTPChallenges() (map[string]map[string][]byte, error)
|
||
|
SaveHTTPChallenges(map[string]map[string][]byte) error
|
||
|
}
|