Skip to content

Commit

Permalink
[acme db interface] wip
Browse files Browse the repository at this point in the history
  • Loading branch information
dopey committed Mar 25, 2021
1 parent 1135ae0 commit 491c188
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions acme/authorization.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,14 @@ import (

// Authorization representst an ACME Authorization.
type Authorization struct {
Identifier Identifier `json:"identifier"`
Status Status `json:"status"`
Expires string `json:"expires"`
Challenges []*Challenge `json:"challenges"`
ChallengeIDs string `json::"-"`
Wildcard bool `json:"wildcard"`
ID string `json:"-"`
AccountID string `json:"-"`
Token string `json:"-"`
Identifier Identifier `json:"identifier"`
Status Status `json:"status"`
Expires time.Time `json:"expires"`
Challenges []*Challenge `json:"challenges"`
Wildcard bool `json:"wildcard"`
ID string `json:"-"`
AccountID string `json:"-"`
Token string `json:"-"`
}

// ToLog enables response logging.
Expand Down

0 comments on commit 491c188

Please sign in to comment.