Skip to content

Commit

Permalink
gofmt
Browse files Browse the repository at this point in the history
  • Loading branch information
venkyg-sec committed Sep 7, 2023
1 parent 094bfa1 commit 8c13029
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions depot/signer.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ type Signer struct {
signatureAlgo x509.SignatureAlgorithm
}


// Option customizes Signer
type Option func(*Signer)

Expand All @@ -31,7 +30,7 @@ func NewSigner(depot Depot, opts ...Option) *Signer {
depot: depot,
allowRenewalDays: 14,
validityDays: 365,
signatureAlgo: 0,
signatureAlgo: 0,
}
for _, opt := range opts {
opt(s)
Expand Down

0 comments on commit 8c13029

Please sign in to comment.