certificates/acme/nonce.go

10 lines
171 B
Go
Raw Normal View History

2021-02-25 10:24:24 -08:00
package acme
2021-03-04 23:10:46 -08:00
// Nonce represents an ACME nonce type.
2021-02-25 10:24:24 -08:00
type Nonce string
2021-03-04 23:10:46 -08:00
// String implements the ToString interface.
func (n Nonce) String() string {
return string(n)
}