mirror of
https://github.com/smallstep/certificates.git
synced 2024-10-31 03:20:16 +00:00
10 lines
171 B
Go
10 lines
171 B
Go
package acme
|
|
|
|
// Nonce represents an ACME nonce type.
|
|
type Nonce string
|
|
|
|
// String implements the ToString interface.
|
|
func (n Nonce) String() string {
|
|
return string(n)
|
|
}
|