mirror of
https://github.com/go-acme/lego.git
synced 2025-01-07 00:37:37 +02:00
30 lines
739 B
Go
30 lines
739 B
Go
|
// Code generated by 'internal/useragent'; DO NOT EDIT.
|
||
|
|
||
|
package useragent
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"net/http"
|
||
|
"runtime"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
// ourUserAgent is the User-Agent of this underlying library package.
|
||
|
ourUserAgent = "goacme-lego/4.19.2"
|
||
|
|
||
|
// 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"
|
||
|
)
|
||
|
|
||
|
// Get builds and returns the User-Agent string.
|
||
|
func Get() string {
|
||
|
return fmt.Sprintf("%s (%s; %s; %s)", ourUserAgent, ourUserAgentComment, runtime.GOOS, runtime.GOARCH)
|
||
|
}
|
||
|
|
||
|
// SetHeader sets the User-Agent header.
|
||
|
func SetHeader(h http.Header) {
|
||
|
h.Set("User-Agent", Get())
|
||
|
}
|