forked from TrueCloudLab/lego
12 lines
350 B
Go
12 lines
350 B
Go
|
package sender
|
||
|
|
||
|
const (
|
||
|
// ourUserAgent is the User-Agent of this underlying library package.
|
||
|
ourUserAgent = "xenolf-acme"
|
||
|
|
||
|
// ourUserAgentComment is part of the UA comment linked to the version status of this underlying library package.
|
||
|
// values: detach|release
|
||
|
// NOTE: Update this with each tagged release.
|
||
|
ourUserAgentComment = "detach"
|
||
|
)
|