mirror of
https://github.com/outbackdingo/certificates.git
synced 2026-01-27 10:18:34 +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)
|
|
}
|