forked from TrueCloudLab/certificates
9 lines
171 B
Go
9 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)
|
|
}
|